Please check the official laravel installation guide for server requirements before you start. [Official Documentation](https://laravel.com/docs/8.x/installation)
Clone the repository
git clone https://github.com/palladiumkenya/ushauri_dashboard
Switch to the repo folder cd ushauri_dashboard
Install all the dependencies using composer
composer install
Copy the example env file and make the required configuration changes in the .env file
cp .env.example .env
Start the local development server
php artisan serve
You can now access the server at http://localhost:8000
TL;DR command list
git clone https://github.com/palladiumkenya/ushauri_dashboard
cd ushauri_dashboard
composer install
cp .env.example .env
php artisan serve
app/Models
- Contains all the Eloquent modelsapp/Http/Controllers
- Contain all the data controllersapp/Http/Controllers/Auth
- Contains all the auth controllersapp/Http/Middleware
- Contains the JWT auth middlewareapp/Http/Jobs
- Contains all the jobs handlersconfig
- Contains all the application configuration filesdatabase/factories
- Contains the model factory for all the modelsdatabase/seeds
- Contains the database seederresources
- Contains all the application views and styling filesroutes
- Contains all the web routes defined in web.php filetests
- Contains all the application tests
.env
- Environment variables can be set in this file
Note : You can quickly set the database information and other variables in this file and have the application fully working.