Skip to content

Commit

Permalink
Example correction
Browse files Browse the repository at this point in the history
  • Loading branch information
juanpablob committed Apr 23, 2017
1 parent 75718d9 commit 4f1476c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,14 @@ angular.module('yourApp', ['environment']).
envServiceProvider.config({
domains: {
development: ['localhost', 'acme.dev.local'],
production: ['acme.com', '*.acme.com', 'acme.dev.prod']
production: ['acme.com', '*.acme.com', 'acme.dev.prod'],
test: ['test.acme.com', 'acme.dev.test', 'acme.*.com'],
// anotherStage: ['domain1', 'domain2']
},
vars: {
development: {
apiUrl: '//api.acme.dev.local/v1',
staticUrl: '//static.acme.dev.local'
staticUrl: '//static.acme.dev.local',
// antoherCustomVar: 'lorem',
// antoherCustomVar: 'ipsum'
},
Expand All @@ -74,7 +74,7 @@ angular.module('yourApp', ['environment']).
}
production: {
apiUrl: '//api.acme.com/v1',
staticUrl: '//static.acme.com'
staticUrl: '//static.acme.com',
// antoherCustomVar: 'lorem',
// antoherCustomVar: 'ipsum'
},
Expand Down

0 comments on commit 4f1476c

Please sign in to comment.