123ArticleOnline Logo
Welcome to 123ArticleOnline.com!
ALL >> Technology,-Gadget-and-Science >> View Article

How To Have Various Environments With Angular Cli Future (angular 7)

Profile Picture
By Author: Sagar rollins
Total Articles: 2
Comment this article
Facebook ShareTwitter ShareGoogle+ ShareTwitter Share

As a result of this, we would need builds of different configurations: Different server URLs, different constants, different logging options, etc.

Angular CLI offers an environment feature that allows running builds targeted at specific environments for specific requirements. For instance, here is how you would run a build for production:

ng build — env=prod // up to Angular 5

Update: With Angular 6 and Above, the command is now:

ng build — configuration=production // new versions

The prod flag in the above code refers to the prod (production in v6 and above) property of the environments section of .angular-cli.json before v6:(now angular.json in v6 and above), which has two options by default: dev and prod

“environments”: {
“dev”: “environments/environment.ts”,
“prod”: “environments/environment.prod.ts”
}

You can add as many environments as you need here and name them accordingly. For instance, if you need a assesment build option, just add the following entry in .angular-cli.json:

“environments”: {
“dev”: “environments/environment.ts”,
...
... “prod”: “environments/environment.prod.ts”,
“qa”: “environments/environment.qa.ts”
}

For v6 and above, angular.json environments are now called configurations. Here is how to add a new qa environment after v6:

“configurations”: {
“production”: { … },
“qa”: {
“file replacements”: [
{
“replace”: “src/environments/environment.ts”,
“with”: “src/environments/environment.qa.ts”
}
]
}
}

Then you have to create the actual file environment.qa.ts in the environments directory.

Here is what the default environment.ts file for dev looks like:

// The file contents for the current environment will overwrite these during build.
// The build system defaults to the dev environment which uses `environment.ts`, but if you do
// `ng build — env=prod` then `environment.prod.ts` will be used instead.
// The list of which env maps to which file can be found in `.angular-cli.json`.
export const environment = {
production: false
};

The above environment object is where you would add any environment specific property. For instance, let’s add a server URL:

export const environment = {
production: false,
serverUrl: “http://dev.server.companyName.com"
};

Then all you have to do to provide a different URL for QA is to define that same property with the right value in environment.qa.ts:

export const environment = {
production: false,
serverUrl: “http://qa.server.companyName.com"
};

Now that your environments are defined, how do you use those properties in your code? Easy enough, all you have to do is import the environment objects as follows:

import {environment} from ‘../../environments/environment’;
@Injectable()
export class AuthService { API_URL: string = environment.server Url + ‘/theUrlForAPI’ ;

Then when you run a build for QA, Angular CLI is going to use environment.qa.ts to read the environment.server Url property value and you’re all set to deploy that build to the QA environment.

My Name is Prateek Pandey. I am a Developer, as well as consultant, and trainer for Angular where I help web developers learn and ease the stuff.

For more information click here -: https://letsmobility.com/

Total Views: 388Word Count: 415See All articles From Author

Add Comment

Technology, Gadget and Science Articles

1. Nitrogen Gas Market: Industrial Expansion, Technological Advancements, And Future Growth Opportunities
Author: nitrogen Gas

2. Ethical Web Scraping Services For Ecommerce Businesses
Author: Web Data Crawler

3. How Does Real-time Dynamic App Data Scraping With Anti-bot Solutions Power Accurate App Intelligence?
Author: Retail Scrape

4. Best Buy & Home Depot Sku Pricing Intelligence Usa | Actowiz
Author: Actowiz Solutions

5. Extract Variant Data From Home Decor And Furnishing Websites
Author: REAL DATA API

6. Who Leads The Global Coding And Marking Market
Author: Arun kumar

7. Through Food & Restaurant Data Scraping Hong Kong And Shenzhen
Author: iwebdatascraping

8. Tools For Home Decor Catalog Data Extraction
Author: REAL DATA API

9. What Makes Mobile App Scraping Authentication & Token Handling Guide Essential For Secure Data Access?
Author: Retail Scrape

10. How To Avoid Ip Blocking In Large-scale Web Scraping
Author: REAL DATA API

11. What Benefits Can Building Scalable Data Pipelines For Mobile App Data Extraction Deliver To Enterprises?
Author: Retail Scrape

12. Home Decor Pricing Trends Analysis Using Data Scraping
Author: Web Data Crawler

13. How Ecommerce Data Scraping Helps Marketplace Sellers
Author: REAL DATA API

14. Q-switch Laser Tattoo Removal Machine In India By Reveal Lasers
Author: reveallasers

15. Ebay Product Dataset For Pricing & Market Strategy
Author: Actowiz Solutions

Login To Account
Login Email:
Password:
Forgot Password?
New User?
Sign Up Newsletter
Email Address: