-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
hide-per-tenant-analytics-on-prod (#579)
* use the default analytics as a default on prod only. the per tenant analytics work was already merged to main and the defaults were hidden on staging. however, pals wants to hold off on deploying that code to production until the ga4 switch has happened so both major changes can happen at the same time. putting the analytics defaults in a conditional ensures that we can still deploy to production from main. related to: #569 * rubocop fix
- Loading branch information
Showing
2 changed files
with
29 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
# | ||
# To integrate your app with Google Analytics, uncomment the lines below and add your API key information. | ||
# | ||
# analytics: | ||
# google: | ||
# analytics_id: <%= ENV['GOOGLE_ANALYTICS_ID'] %> | ||
# app_name: <%= ENV['GOOGLE_OAUTH_APP_NAME'] %> | ||
# app_version: <%= ENV['GOOGLE_OAUTH_APP_VERSION'] %> | ||
# privkey_value: <%= ENV['GOOGLE_OAUTH_PRIVATE_KEY_VALUE'] %> | ||
# # OR privkey_path: <%= ENV['GOOGLE_OAUTH_PRIVATE_KEY_PATH'] %> | ||
# privkey_secret: <%= ENV['GOOGLE_OAUTH_PRIVATE_KEY_SECRET'] %> | ||
# client_email: <%= ENV['GOOGLE_OAUTH_CLIENT_EMAIL'] %> | ||
analytics: | ||
google: | ||
analytics_id: <%= ENV['GOOGLE_ANALYTICS_ID'] %> | ||
app_name: <%= ENV['GOOGLE_OAUTH_APP_NAME'] %> | ||
app_version: <%= ENV['GOOGLE_OAUTH_APP_VERSION'] %> | ||
privkey_value: <%= ENV['GOOGLE_OAUTH_PRIVATE_KEY_VALUE'] %> | ||
# OR privkey_path: <%= ENV['GOOGLE_OAUTH_PRIVATE_KEY_PATH'] %> | ||
privkey_secret: <%= ENV['GOOGLE_OAUTH_PRIVATE_KEY_SECRET'] %> | ||
client_email: <%= ENV['GOOGLE_OAUTH_CLIENT_EMAIL'] %> |