A progressive Node.js framework for building efficient and scalable server-side applications.
Nest framework TypeScript starter repository.
$ docker run -d -p 3434:3306 --name users -e MYSQL_ROOT_PASSWORD=1234 -e MYSQL_DATABASE=task_mgmt -e MYSQL_USER=amir -e MYSQL_PASSWORD=1234 mysql/mysql-server:latest
$ docker exec -it users bash
$ mysql -u root -p
$ 1234
mysql> CREATE USER 'root'@'172.17.0.1' IDENTIFIED BY 'password';
mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'172.17.0.1' WITH GRANT OPTION;
$ npm install
# 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
- Author - Amir Shtaiman