mention dev.sh and prod.sh in the readme

This commit is contained in:
blek 2023-10-02 15:48:25 +10:00
parent c7f4cc1562
commit ff10aa2499
Signed by: blek
GPG Key ID: 14546221E3595D0C
1 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ First, [generate the app key](#generate-the-key).
### Debug
```bash
cp .env.example .env
APP_DEBUG=true sudo ./install
./dev.sh # this will do most of the work
docker-compose up -d
```
@ -20,7 +20,7 @@ docker-compose up -d
```bash
cp .env.example .env
echo "APP_DEBUG=false" >> .env # Or edit the file yourself
sudo ./install
./prod.sh # this will do most of the work
docker-compose up -d
```