Merge pull request #84 from ILoveScratch2/main

docs: change commands in README adapted to different platforms
This commit is contained in:
Maze 2025-06-25 20:26:46 +02:00 committed by GitHub
commit 2ddd8cb0d7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 10 additions and 1 deletions

View File

@ -59,7 +59,16 @@ Before you begin, ensure you have the following installed on your system:
Navigate into the web app's directory and create a `.env` file from the example:
```bash
cd apps/web
cp .env.example .env
# Unix/Linux/Mac
cp .env.example .env.local
# Windows Command Prompt
copy .env.example .env.local
# Windows PowerShell
Copy-Item .env.example .env.local
```
*The default values in the `.env` file should work for local development.*