Video rooms
Steps to setup server:
- Install TypeORM :-
npm i -g typeorm
- Setup db and services :-
typeorm init --name server --database postgres
- Install PostgreSQL and
createdb vroom
- Install server dependencies
npm i
- Start server
npm start
Steps to setup client:
- Generates hooks, HOCs, components from our graphql schema and operations :-
npx graphql-codegen init
. Config file is codegen.yml - Install client dependencies
npm i
- Start client
npm start