Skip to content

Commit 573013d

Browse files
authored
docs: improve setup instructions (#4)
1 parent 20124bb commit 573013d

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,24 @@ Make sure to install the dependencies:
1414
pnpm install
1515
```
1616

17+
Copy the example environment file to create your .env file:
18+
19+
```bash
20+
cp .env.example .env
21+
```
22+
23+
Generate a new application key for your Laravel application:
24+
25+
```bash
26+
php artisan key:generate
27+
```
28+
29+
Set up your database by running the migrations:
30+
31+
```bash
32+
php artisan migrate
33+
```
34+
1735
## Development Server
1836

1937
Start the development server on `http://localhost:8000`:

0 commit comments

Comments
 (0)