Skip to content

Latest commit

 

History

History
24 lines (22 loc) · 506 Bytes

README.md

File metadata and controls

24 lines (22 loc) · 506 Bytes

Keizer Town

This is a virtual platform for people to come together interact in a physical-like environment

Running the project

  1. install packages
cd server
yarn
  1. add a .env according to the .env.example
  2. Run your postgres instance on docker
  3. add db URL and generate the prisma client
cd http-server/src/db/prisma
// add the DB URL as the environment variable here
npx prisma migrate dev
  1. Build the entire code
// return to /server
yarn build
yarn execute