This is a virtual platform for people to come together interact in a physical-like environment
- install packages
cd server
yarn
- add a
.env
according to the.env.example
- Run your postgres instance on docker
- 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
- Build the entire code
// return to /server
yarn build
yarn execute