From ff10aa2499ff73906fbed2086b5222a3e1d134cc Mon Sep 17 00:00:00 2001 From: blek Date: Mon, 2 Oct 2023 15:48:25 +1000 Subject: [PATCH] mention dev.sh and prod.sh in the readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5044687..836b48d 100644 --- a/README.md +++ b/README.md @@ -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 ```