-
Notifications
You must be signed in to change notification settings - Fork 0
/
notes.txt
51 lines (37 loc) · 1.28 KB
/
notes.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
git config --global user.email "jitesh@gmail.com"
git config --global user.name "jk872001"
npm i -D typescript
npx tsc --init
npx tsc
npm i @types/node
npm install --save-dev --save-exact prettier
node --eval "fs.writeFileSync('.prettierrc','{}\n')"
npx prettier . --check
npx prettier . --write
npm install --save-dev @typescript-eslint/parser @typescript-eslint/eslint-plugin eslint typescript
npx eslint .
npm install --save-dev eslint-config-prettier
npm i dotenv
npm i express
npm i -D @types/express
npm i nodemon
npm i -D ts-node
npm i winston
npm i -D @types/winston
npm i http-errors
npm i -D @types/http-errors
npm install --save-dev jest
npm install --save-dev @types/jest
npm install --save-dev ts-jest
npx ts-jest config:init
npm i -D supertest @types/supertest
npm install typeorm --save
npm install reflect-metadata --save
npm install pg --save
npx typeorm init --database postgres
npm i cross-env
npm i express-validator
npm run migration:generate -- src/migration/rename_user_table -d .\src\config\data-source.ts
npm run migration:run -- -d .\src\config\data-source.ts
docker ps
docker run --rm -it -v C:\jitesh\github\pizza-web-app:/usr/src/app -v /usr/src/app/node_modules --env-file C:\jitesh\github\pizza-web-app\.env.dev -p 4444:4444 -e NODE_ENV=development auth-service-new:dev