This project located on branch master.
For project initialization, follow these steps :
- Download the project src folder or clone it using
git clone https://github.com/Yann2808/MyMBOware - On Command Line Interface (CLI), go to the clone repository with
cd - Use
git checkout masterte switch on branch master - Install project dependencies with
composer install - Create a .env File: Laravel uses environment variables for configuration. Duplicate the .env.example file and rename the copy to .env. Then, open the .env file and set up your database connection details, app key, and any other necessary environment variables.
- Use
php artisan key:generateto generate application key - If the project uses a database and has migrations set up, you need to run them to create the necessary tables. Run the following command
php artisan migrateto run migrations (if you needed) - Use
php artisan serveto start a development server.