cms framework build on nest, export rest and graphql api
Based on Nest framework.
$ npm install
# update database config in ormconfig.json
{
"type": "mysql",
"host": "xxxxxxxx",
"port": 3306,
"username": "dev",
"password": "xxxxxxxx",
"database": "xxxxxxxx",
"entities": ["src/**/**.model{.ts,.js}"],
"synchronize": true
}
# 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