Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alisson-ribeiro/laravel-web-app
https://github.com/alisson-ribeiro/laravel-web-app
laravel laravel-application laravel-framework laravel-jobs php phpunit phpunit-tests
Last synced: 28 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/alisson-ribeiro/laravel-web-app
- Owner: Alisson-Ribeiro
- License: mit
- Created: 2024-04-19T15:27:14.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-09-24T02:28:49.000Z (about 1 month ago)
- Last Synced: 2024-10-09T11:43:33.854Z (28 days ago)
- Topics: laravel, laravel-application, laravel-framework, laravel-jobs, php, phpunit, phpunit-tests
- Language: PHP
- Homepage:
- Size: 188 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
## Installing this project to your development enviroment is that simple
## you will need 3 terminals:
### - 1 for 'php artisan seve', it's your application server and must be kept running;
### - 1 terminal for 'php artisan queue:work', also must be kept running to queue jobs;
### - 1 terminal for other commands## run the following commands in your CLI in the following order:
- git clone project
- cd into project root folder
- composer install
- npm install
- copy '.env-example'
- paste '.env-example' (same directory, root in this case)
- rename '.env-example' to '.env'
- set your database in '.env' file
- set '.env' file with your (SMTP) email service provider info to deliver email after the creation of a new job position- MAIL_MAILER=smtp
- MAIL_HOST= // your host
- MAIL_PORT=2525
- MAIL_USERNAME= // your username
- MAIL_PASSWORD= // your password
- php artisan migrate
- php artisan db:seed
- php artisan key:generate
- php artisan serve
- php artisan queue:work