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.git

Next make sure to generate composer files and npm modules with the next command:

composer install && npm install

Next run the next command:

npm run dev

Next 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=secret

Finally, we can generate key for the Bang Awards website with the next command:

php artisan key:generate

Now we can run the Bang Awards website, for example, with php artisan with the next command:

php artisan serve

Last updated

Was this helpful?