Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 592 Bytes

README.md

File metadata and controls

42 lines (31 loc) · 592 Bytes

Setup Locally

Cloning the Repository

git clone https://github.com/mynk2611/remimo.git
cd remimo

Install the dependencies

npm install

Set up Environment Variables

cd apps/user-app
copy .env.example .env
cd ../..

setup DB locally

cd packages/db
copy .env.example .env

now, write your connection string in DATABASE_URL

npx prisma migrate dev
npx prisma db seed 
npx prisma generate

Run locally

cd ../..
npm run dev

Open http://localhost:3000 in your browser to view the project.