- Clone the repository
git clone url
Via the Command Line (change working directory to /src/epl-business-plan-manager)
- composer install
- npm install (OSX will need to use sudo for permission purposes)
- gulp
- touch .env (edit the .env file and add the below to your new file, this is your config file, username and passwords must match your own setup)
APP_ENV=local APP_DEBUG=true APP_KEY=SomeRandomString DB_HOST=127.0.0.1 DB_DATABASE=EPL_database DB_USERNAME=root DB_PASSWORD=secret CACHE_DRIVER=file SESSION_DRIVER=file
- php artisan key:generate
- mysql -u root -p
- create schema EPL_database;
- exit
- php artisan migrate
- php artisan db:seed
- php artisan serve
- You should be able to now connect to http://localhost:8000/
- You can now log in with any of the seeded data, which is available in this file (/src/epl-business-plan-manager/database/seeds/UsersTableSeeder.php)