diff --git a/src/environments/.gitignore b/src/environments/.gitignore index 8f7bc00..e1a4046 100644 --- a/src/environments/.gitignore +++ b/src/environments/.gitignore @@ -2,4 +2,4 @@ environment.* # Keep example files for documentation -!environment.example +!environment.example.ts diff --git a/src/environments/environment.development.ts b/src/environments/environment.development.ts index 894f648..be86e82 100644 --- a/src/environments/environment.development.ts +++ b/src/environments/environment.development.ts @@ -1,6 +1,6 @@ export const environment = { production: false, - api_url: 'http://localhost:3201/api', //'https://api.rampeur.com/api' + api_url: 'http://localhost:3200/api', api_key: '9f5a9b80a39b4788be2f12941b766aba', use_api_key: true, refresh_interval: 30000, diff --git a/src/environments/environment.example.ts b/src/environments/environment.example.ts new file mode 100644 index 0000000..894f648 --- /dev/null +++ b/src/environments/environment.example.ts @@ -0,0 +1,8 @@ +export const environment = { + production: false, + api_url: 'http://localhost:3201/api', //'https://api.rampeur.com/api' + api_key: '9f5a9b80a39b4788be2f12941b766aba', + use_api_key: true, + refresh_interval: 30000, + google_map_api_key: 'AIzaSyCM_6dkaugLEUsAnDQNJMyi0ZJEgKk2Iyg' +}; diff --git a/src/environments/environment.local.ts b/src/environments/environment.local.ts index 894f648..4b40e23 100644 --- a/src/environments/environment.local.ts +++ b/src/environments/environment.local.ts @@ -1,6 +1,6 @@ export const environment = { production: false, - api_url: 'http://localhost:3201/api', //'https://api.rampeur.com/api' + api_url: 'http://localhost:3201/api', api_key: '9f5a9b80a39b4788be2f12941b766aba', use_api_key: true, refresh_interval: 30000, diff --git a/src/environments/environment.ts b/src/environments/environment.ts index 70589a0..d041125 100644 --- a/src/environments/environment.ts +++ b/src/environments/environment.ts @@ -1,6 +1,6 @@ export const environment = { production: true, - api_url: 'http://localhost:3201/api', //'https://api.rampeur.com/api' + api_url: 'http://api.netgrowing.net/api', api_key: '9f5a9b80a39b4788be2f12941b766aba', use_api_key: true, refresh_interval: 30000,