Browse Source

Remove Google Analytics from Azure deployment

pull/320/head
Clemens Wolff 5 years ago
parent
commit
33f3f17c39
2 changed files with 2 additions and 2 deletions
  1. 2
      app/app/settings.py
  2. 2
      azuredeploy.json

2
app/app/settings.py

@ -269,7 +269,7 @@ SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https')
# on the import phase
IMPORT_BATCH_SIZE = env.int('IMPORT_BATCH_SIZE', 500)
GOOGLE_TRACKING_ID = env('GOOGLE_TRACKING_ID', 'UA-125643874-2')
GOOGLE_TRACKING_ID = env('GOOGLE_TRACKING_ID', 'UA-125643874-2').strip()
AZURE_APPINSIGHTS_IKEY = env('AZURE_APPINSIGHTS_IKEY', None)
APPLICATION_INSIGHTS = {

2
azuredeploy.json

@ -301,7 +301,7 @@
},
{
"name": "GOOGLE_TRACKING_ID",
"value": ""
"value": " "
},
{
"name": "DEBUG",

Loading…
Cancel
Save