This boilerplate is to setup a new full stack Angular and Nest project with the following features:
- server side rendering
- tailwindcss
- eslint
- prettier
- docker (not implemented yet)
- file structure
# development
ng serve
# build
ng build
# test
ng test
# e2e test
ng e2e
# generate component
ng generate component component-name # (ng g c component-name)
ng generate directive|pipe|service|class|guard|interface|enum|module
# 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