From ef9697b9d60580dab1a43b3df5909676b2a06fb5 Mon Sep 17 00:00:00 2001 From: rishabjasrotia Date: Tue, 31 Oct 2023 18:40:32 +0530 Subject: [PATCH] Usage of MakeFile to build project --- INSTALLATION.md | 6 ++++++ Makefile | 3 +++ 2 files changed, 9 insertions(+) create mode 100644 Makefile diff --git a/INSTALLATION.md b/INSTALLATION.md index 78dbcf142..9456f924b 100644 --- a/INSTALLATION.md +++ b/INSTALLATION.md @@ -83,3 +83,9 @@ You can install all 3 components on digital ocean using the button below - Visit below link if you face any issues while following the above instructions - - https://repost.aws/knowledge-center/create-access-key + + +## Localhost(Docker) + +Below are the steps to follow - +- Execute `make build` \ No newline at end of file diff --git a/Makefile b/Makefile new file mode 100644 index 000000000..219e4842b --- /dev/null +++ b/Makefile @@ -0,0 +1,3 @@ +build: + cp .env.example .env + docker compose up -d \ No newline at end of file