From f3fa6b35162db72e3d741f60d3453c0afbcc9fc7 Mon Sep 17 00:00:00 2001 From: A Noor <100anonyo@gmail.com> Date: Tue, 28 May 2024 03:38:29 +0000 Subject: [PATCH] stash --- README.md | 2 +- backend/{development.env.example => .env.example} | 0 backend/deploy.sh | 1 + 3 files changed, 2 insertions(+), 1 deletion(-) rename backend/{development.env.example => .env.example} (100%) diff --git a/README.md b/README.md index cd2d1fa8..31244fc5 100644 --- a/README.md +++ b/README.md @@ -115,7 +115,7 @@ The development build is mainly made for testing, so it is ideal for self-hostin To run the full app, you need the microservices running through Docker, and the main application running seperately. -You can find the developement compose file [here]("./backend/docker-compose.dev.yaml"). You will also need a `.env` file that can be found [here]("./backend/development.env.example") +You can find the developement compose file [here]("./backend/docker-compose.dev.yaml"). You will also need a `.env` file that can be found [here]("./backend/.env.example") Once you have all the configuration files ready, to start the app, run the following. diff --git a/backend/development.env.example b/backend/.env.example similarity index 100% rename from backend/development.env.example rename to backend/.env.example diff --git a/backend/deploy.sh b/backend/deploy.sh index eeff1f2e..be6b4300 100644 --- a/backend/deploy.sh +++ b/backend/deploy.sh @@ -1,5 +1,6 @@ echo "Deploying Server..." +git add -A . git stash git pull origin main