The magestic monolith
Control Center is the modular monolithic RESTful API services powering the entire creathor africa system ecosystem.
- Nodejs (>= v16)
- Docker
- Docker Compose
CD into the project root directory and install the project dependencies.
$ npm installStart the shared development infrasture containers (postgres, redis)
$ docker-compose up --build# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov