Download
Bang Awards is super easy to cloning. After creating your project folder you can cloning Bang Awards with the following command:
git clone https://[email protected]/Leonardo_Ferreira_10/bang-awards-dev.gitNext make sure to generate composer files and npm modules with the next command:
composer install && npm installNext run the next command:
npm run devNext make sure to create a new database and add your database credentials to your .env file, you will also want to add your application URL in the APP_URL variable:
APP_URL=http://localhost
DB_HOST=localhost
DB_DATABASE=homestead
DB_USERNAME=homestead
DB_PASSWORD=secretFinally, we can generate key for the Bang Awards website with the next command:
php artisan key:generateNow we can run the Bang Awards website, for example, with php artisan with the next command:
php artisan serveLast updated
Was this helpful?