https://github.com/bencoderus/ssp
Building an SSP using Vue and Laravel
https://github.com/bencoderus/ssp
Last synced: 5 months ago
JSON representation
Building an SSP using Vue and Laravel
- Host: GitHub
- URL: https://github.com/bencoderus/ssp
- Owner: bencoderus
- Created: 2021-10-16T09:02:38.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-04-19T18:46:10.000Z (over 2 years ago)
- Last Synced: 2025-01-24T08:31:29.143Z (11 months ago)
- Language: PHP
- Size: 1.25 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Introduction
Building an SSP that lets you create and manage your campaigns. App was built using Laravel and Inertia Vue.
## Requirements
- PHP 7.4 (Optional).
- Composer (Optional).
- MySQL 5.7 (Optional).
- Docker.
## Installation guide using Docker.
- Clone the repository and cd into project
- Run docker-compose up.
- App would be running on 7000.
## Installation guide using Valet or an Apache server.
- Clone the repository.
- CD into project directory
- Run cp .env.example .env
- Run php artisan key: generate
- Run composer install
- Run php artisan migrate
- Run php artisan db:seed
- Run php artisan storage:link
- Run php artisan serve
- App would be running on 8000.
## Login using credentials
- Email: me@biduwe.com
- Password: password
#### Testing the application in a Docker container
- docker exec -it {containerID} bash.
- composer test
#### Testing the application
- Follow the default installation guide.
- Run composer test.