-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcommands.txt
More file actions
45 lines (33 loc) · 1.22 KB
/
commands.txt
File metadata and controls
45 lines (33 loc) · 1.22 KB
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
ng new router1 --routing
cd router1
npm install --save @angular/material @angular/cdk @angular/animations
npm install --save @angular/platform-browser
npm install --save @angular/flex-layout
npm install --save hammerjs
ng g m manager -m app --routing
ng g m inventory -m app --routing
ng g m pos -m app --routing
ng g m user -m app --routing
ng g c home -m app --inline-template --inline-style
ng g c pageNotFound -m app --inline-template --inline-style
ng g c manager/manager -m manager -s -t
ng g c manager/managerHome -m manager -s -t
ng g m material --flat -m app
ng g c manager/userManagement -m manager
ng g c manager/receiptLookup -m manager
ng g c user/profile -m user
ng g c user/navigationMenu -m user -t -s
ng g c user/logout -m user -t -s
ng g c pos/pos -m pos -t -s
ng g c inventory -m inventory -t -s
ng g c inventory/inventory-home -m inventory -t -s
ng g c inventory/products -m inventory -t -s
ng g c inventory/stock-entry -m inventory -t -s
ng g c inventory/categories -m inventory -t -s
ng g s auth -m app --flat=true
npm install jwt-decode fake-jwt-sign
npm install -D @types/jwt-decode
ng g c login -m app
ng g s common/ui -m app --flat=true
ng g c navigation-menu -m app -t -s
ng g s auth/auth-guard -m app --flat=true