-
Notifications
You must be signed in to change notification settings - Fork 8
Adds DFE analytics setup #42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
dcyoung-dev
wants to merge
1
commit into
main
Choose a base branch
from
dy/add-dfe-analytics
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+53
−0
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| gem 'dfe-analytics', github: 'DFE-Digital/dfe-analytics', tag: 'v1.15.8' | ||
|
|
||
| bundle_command("install --quiet") | ||
|
|
||
| run "rails generate dfe:analytics:install" | ||
|
|
||
| airbyte_config = <<-RUBY | ||
| # Set a config file for Airbyte | ||
| config.airbyte_stream_config_path = 'config/analytics_airbyte_stream_config.json' | ||
| RUBY | ||
| # FIXME: Uncomment this whent he version is updated | ||
| # insert_into_file("config/initializers/dfe_analytics.rb", airbyte_config, after: "DfE::Analytics.configure do |config|\n" ) | ||
|
|
||
| azure_federated_auth_config = <<-RUBY | ||
| # FIXME: Review this setting to ensure it's appropriate for your application | ||
| # Use Azure Federated Auth [see docs](https://github.com/DFE-Digital/dfe-analytics?tab=readme-ov-file#31-workload-identity-federation) | ||
| config.azure_federated_auth = true | ||
| RUBY | ||
| gsub_file("config/initializers/dfe_analytics.rb", " # config.azure_federated_auth = false", azure_federated_auth_config) | ||
|
|
||
| log_only_config = <<-RUBY | ||
| # FIXME: Review this setting to ensure it's appropriate for your application | ||
| config.log_only = Rails.env.local? | ||
| RUBY | ||
| gsub_file("config/initializers/dfe_analytics.rb", " # config.log_only = true", log_only_config) | ||
|
|
||
| async_config = <<-RUBY | ||
| # FIXME: Review this setting to ensure it's appropriate for your application | ||
| config.async = !Rails.env.local? | ||
| RUBY | ||
| gsub_file("config/initializers/dfe_analytics.rb", " # config.async = true", async_config) | ||
|
|
||
| queue_config = <<-RUBY | ||
| config.queue = :dfe_analytics | ||
| RUBY | ||
| gsub_file("config/initializers/dfe_analytics.rb", " # config.queue = :default", queue_config) | ||
|
|
||
| inject_into_file( | ||
| "app/controllers/application_controller.rb", | ||
| "include DfE::Analytics::Requests\n".indent(2), | ||
| after: "class ApplicationController < ActionController::Base\n" | ||
| ) | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.