Nest server monitoring system
Example .env file is given for reference as (example.env). For local development use the following command after cloning the project.
cp example.env .env
We use git-flow branching model. The base branch is dev
.
If you are looking for a stable version, please use the master
or tags labelled as v1.x.x
.
$ npm install
# build docker image
docker-compose build
# build start instance
docker-compose up
open browser and navigate to http://localhost:3000/ open graphiQl and navigate to http://localhost:3000/graphql
# development server
$ yarn start:server
# run react dev server
$ yarn start:client
# rebuild ui and start server
$ npm run start:prodserver
open browser and navigate to http://localhost:9000/ open graphiQl and navigate to http://localhost:9000/graphql
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov
Nest is MIT licensed.