Full features including e2e test, unit test and more
.
├── README.md
├── babel.config.js
├── docker-compose.yaml
├── e2e
│ ├── dummy-data
│ ├── jest.config.json
│ ├── set-up
│ └── tests
├── nodemon.json
├── package.json
├── src
│ ├── constants
│ ├── controllers
│ ├── helpers
│ ├── index.ts
│ ├── middlewares
│ ├── models
│ ├── routes.ts
│ ├── server.ts
│ ├── services
│ └── types
│ └── views
├── tsconfig.json
└── yarn.lock
controllers
: codes for handling validation dataservices
: codes for handling main logicmodels
: codes mapping model in mongoDb and codeviews
: codes for rendering views
First you need to install Docker to boost up local development environment
Then run to start local mongodb server
docker-compose up -d
Install project dependencies
yarn install
Start local development environment
yarn dev
Start in production mode
yarn start