File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed
Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,19 @@ git clone https://github.com/unicodeveloper/laravel-hackathon-starter.git hackat
8989# Change directory
9090cd hackathon-starter-pack
9191
92- # Rename env.example to .env and fill in all the keys and secrets and also generate a secure key for the app using `php artisan key:generate`
92+ # Copy .env.example to .env
93+ cp .env.example .env
94+
95+ # Generate application secure key (in .env file)
96+ php artisan key:generate
97+
98+ # Create a database (with mysql or postgresql)
99+ # And update .env file with database credentials
100+ # DB_CONNECTION=mysql
101+ # DB_HOST=127.0.0.1
102+ # DB_DATABASE=laravelhackathon
103+ # DB_USERNAME=root
104+ # DB_PASSWORD=root
93105
94106# Install Composer dependencies
95107composer install
You can’t perform that action at this time.
0 commit comments