-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHOWTO
More file actions
17 lines (15 loc) · 667 Bytes
/
HOWTO
File metadata and controls
17 lines (15 loc) · 667 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
How to start server :
1. Go to root folder (angular-setup).
2. To run development mode, type
sh tools/start-server.sh
This will use "public" folder as starting point.
To run production mode, type
sh tools/start-server.sh dist
This will use "target" folder as starting point.
3. Type http://localhost:8080 in browser for development.
http://localhost:8083 browser for production.
How to run production(distribution) process
1. Go to root folder (angular-setup).
2. Compile development(public) folder to production(target) folder, type
sh tools/r.sh
3. Wait until the process complete then you can start server using production command(see above)