Browse Source

Merge pull request #320 from CatalystCode/bugfix/google-analytics

Bugfix/Remove Google Analytics from Azure deployment
pull/334/head
Hiroki Nakayama 5 years ago
committed by GitHub
parent
commit
ef01fc54ed
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
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