Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 1 KB

File metadata and controls

44 lines (29 loc) · 1 KB

Docker setup guidelines 🚀

Prerequisite

Step 1 - Clone the repository

 git clone https://github.com/karmacircleCommunity/KarmaCircle.git

Step 2 - Change directory to apps/web

This repo is a monorepo; the frontend's docker-compose.dev.yaml lives at apps/web, not the repo root.

 cd KarmaCircle/apps/web

Step 3 - Add env variables

  • Once you're done installing, create a .env file in the root of your project directory to include all environment variables
  • The following are the environment variables you'll need before running the server:
PORT=
MONGO_URI=
RAZORPAY_KEY_ID=
KEY_ID=
KEY_SECRET=

Step 4 - Run docker compose file

docker-compose up -d --build

Step 5 - Open in browser

visit localhost:3000 to run the app