Skip to content

Latest commit

 

History

History
83 lines (57 loc) · 990 Bytes

File metadata and controls

83 lines (57 loc) · 990 Bytes

Setup:

Setup with Docker :

Setup with Docker
  • Put your Gemini API and JWT key in "docker-compose.yml"

  • For 1st time setup run below command

docker-compose up --build
  • After that for running again run
docker-compose up db frontend backend

Setup without Docker :

Setup without Docker

Setup Backend:

cd backend
npm i

Setup Database:

  • postgres database
  • Create .env file in backend folder like .env.sample
  • Run this command
cd backend
db:setup

Setup Frontend:

cd frontend
npm i

Run Application

terminal 1

cd frontend
npm run start

terminal 2

cd backend
npm run dev