Deploy: Development
Deploying changes to development environment
Navigate to root app development folder
Pull From Github
This will subject to your Git branch workflow
Angular
The start:dev command does the following:
Set the Angular .env file to development
Run ng build to compile files in an angular default development mode
Start angular server by default on port 4200
NestJS
The NestJS NPM start:dev command does the following:
Set NestJS .env file to development
Delete the /dist folder
Delete the log file
Build application files in the /dist folder
Copy handlebar email templates used by NestJS server pages to /dist folder
Launch the app with node server
Last updated
Was this helpful?