Skip to content

Commit d2a922e

Browse files
author
Prosper Otemuyiwa
authored
Merge pull request #27 from Cyrille37/patch-1
More detailled "Getting Started" section
2 parents 2d34818 + b858332 commit d2a922e

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

readme.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,19 @@ git clone https://github.com/unicodeveloper/laravel-hackathon-starter.git hackat
8989
# Change directory
9090
cd 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
95107
composer install

0 commit comments

Comments
 (0)