- Install dependencies first, run
yarn
oryarn install
- Create an .env file in the root directory & follow the
.env.example
, get env keys from @Asher - To start the server in development, run
yarn dev
- To start a production server, run
yarn build
&yarn start
- Contact @Asher if you encounter any problems
- Node / Express
- TypeScript
- Postgresql
- Prisma
- Heroku
- GET
/api/users
- All users - GET
/api/user/:id
- Single user - POST
/api/user
- Create user - PUT
/api/user/:id
- Update user - DELETE
/api/user/:id
- Delete user