railties 8.0.2.1 → 8.1.0.beta1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +72 -224
- data/README.rdoc +1 -1
- data/lib/minitest/rails_plugin.rb +48 -12
- data/lib/rails/application/bootstrap.rb +6 -3
- data/lib/rails/application/configuration.rb +26 -0
- data/lib/rails/application/default_middleware_stack.rb +1 -1
- data/lib/rails/application/finisher.rb +2 -1
- data/lib/rails/application/routes_reloader.rb +1 -2
- data/lib/rails/application.rb +6 -4
- data/lib/rails/application_controller.rb +2 -0
- data/lib/rails/command/base.rb +0 -2
- data/lib/rails/command/environment_argument.rb +0 -1
- data/lib/rails/command.rb +1 -1
- data/lib/rails/commands/console/irb_console.rb +6 -5
- data/lib/rails/commands/credentials/credentials_command.rb +25 -5
- data/lib/rails/commands/encrypted/encrypted_command.rb +0 -1
- data/lib/rails/engine/lazy_route_set.rb +8 -11
- data/lib/rails/engine.rb +0 -1
- data/lib/rails/gem_version.rb +3 -3
- data/lib/rails/generators/actions.rb +2 -3
- data/lib/rails/generators/app_base.rb +43 -54
- data/lib/rails/generators/bundle_helper.rb +34 -0
- data/lib/rails/generators/database.rb +1 -1
- data/lib/rails/generators/erb/authentication/authentication_generator.rb +2 -0
- data/lib/rails/generators/erb/scaffold/templates/partial.html.erb.tt +2 -2
- data/lib/rails/generators/generated_attribute.rb +1 -1
- data/lib/rails/generators/migration.rb +0 -1
- data/lib/rails/generators/rails/app/app_generator.rb +14 -4
- data/lib/rails/generators/rails/app/templates/Dockerfile.tt +15 -13
- data/lib/rails/generators/rails/app/templates/Gemfile.tt +3 -0
- data/lib/rails/generators/rails/app/templates/app/controllers/application_controller.rb.tt +5 -0
- data/lib/rails/generators/rails/app/templates/app/views/layouts/application.html.erb.tt +1 -0
- data/lib/rails/generators/rails/app/templates/bin/bundler-audit.tt +5 -0
- data/lib/rails/generators/rails/app/templates/bin/ci.tt +5 -0
- data/lib/rails/generators/rails/app/templates/bin/rubocop.tt +1 -1
- data/lib/rails/generators/rails/app/templates/bin/setup.tt +1 -0
- data/lib/rails/generators/rails/app/templates/config/bundler-audit.yml.tt +5 -0
- data/lib/rails/generators/rails/app/templates/config/ci.rb.tt +34 -0
- data/lib/rails/generators/rails/app/templates/config/databases/mysql.yml.tt +9 -1
- data/lib/rails/generators/rails/app/templates/config/databases/postgresql.yml.tt +10 -2
- data/lib/rails/generators/rails/app/templates/config/databases/sqlite3.yml.tt +1 -1
- data/lib/rails/generators/rails/app/templates/config/databases/trilogy.yml.tt +9 -1
- data/lib/rails/generators/rails/app/templates/config/deploy.yml.tt +5 -5
- data/lib/rails/generators/rails/app/templates/config/environments/development.rb.tt +5 -0
- data/lib/rails/generators/rails/app/templates/config/environments/production.rb.tt +16 -4
- data/lib/rails/generators/rails/app/templates/config/initializers/content_security_policy.rb.tt +4 -0
- data/lib/rails/generators/rails/app/templates/config/initializers/new_framework_defaults_8_1.rb.tt +66 -0
- data/lib/rails/generators/rails/app/templates/config/puma.rb.tt +3 -2
- data/lib/rails/generators/rails/app/templates/config/storage.yml.tt +0 -7
- data/lib/rails/generators/rails/app/templates/docker-entrypoint.tt +0 -6
- data/lib/rails/generators/rails/app/templates/github/ci.yml.tt +101 -19
- data/lib/rails/generators/rails/app/templates/github/dependabot.yml +2 -2
- data/lib/rails/generators/rails/app/templates/kamal-secrets.tt +3 -0
- data/lib/rails/generators/rails/app/templates/public/400.html +1 -1
- data/lib/rails/generators/rails/app/templates/public/404.html +2 -2
- data/lib/rails/generators/rails/app/templates/public/422.html +1 -1
- data/lib/rails/generators/rails/app/templates/public/500.html +2 -2
- data/lib/rails/generators/rails/authentication/authentication_generator.rb +22 -9
- data/lib/rails/generators/rails/authentication/templates/app/controllers/passwords_controller.rb.tt +6 -0
- data/lib/rails/generators/rails/authentication/templates/app/controllers/sessions_controller.rb.tt +2 -2
- data/lib/rails/generators/rails/authentication/templates/test/test_helpers/session_test_helper.rb.tt +15 -0
- data/lib/rails/generators/rails/benchmark/USAGE +1 -1
- data/lib/rails/generators/rails/benchmark/templates/benchmark.rb.tt +0 -2
- data/lib/rails/generators/rails/devcontainer/templates/devcontainer/Dockerfile.tt +4 -0
- data/lib/rails/generators/rails/devcontainer/templates/devcontainer/compose.yaml.tt +2 -2
- data/lib/rails/generators/rails/encryption_key_file/encryption_key_file_generator.rb +17 -5
- data/lib/rails/generators/rails/master_key/master_key_generator.rb +0 -12
- data/lib/rails/generators/rails/plugin/templates/github/ci.yml.tt +20 -9
- data/lib/rails/generators/rails/plugin/templates/github/dependabot.yml +2 -2
- data/lib/rails/generators/rails/scaffold_controller/templates/api_controller.rb.tt +2 -2
- data/lib/rails/generators/rails/scaffold_controller/templates/controller.rb.tt +2 -2
- data/lib/rails/generators/rails/script/USAGE +1 -1
- data/lib/rails/generators/test_unit/authentication/authentication_generator.rb +5 -0
- data/lib/rails/generators/test_unit/authentication/templates/test/controllers/passwords_controller_test.rb.tt +67 -0
- data/lib/rails/generators/test_unit/authentication/templates/test/controllers/sessions_controller_test.rb +33 -0
- data/lib/rails/generators/test_unit/authentication/templates/test/models/user_test.rb.tt +4 -3
- data/lib/rails/generators/test_unit/model/templates/fixtures.yml.tt +1 -1
- data/lib/rails/generators/testing/behavior.rb +0 -3
- data/lib/rails/generators.rb +3 -1
- data/lib/rails/health_controller.rb +10 -2
- data/lib/rails/info.rb +4 -4
- data/lib/rails/info_controller.rb +2 -3
- data/lib/rails/initializable.rb +63 -19
- data/lib/rails/rack/silence_request.rb +5 -2
- data/lib/rails/railtie/configurable.rb +0 -1
- data/lib/rails/railtie.rb +0 -1
- data/lib/rails/templates/rails/info/notes.html.erb +23 -0
- data/lib/rails/templates/rails/mailers/email.html.erb +2 -1
- data/lib/rails/templates/rails/welcome/index.html.erb +17 -1
- data/lib/rails/test_unit/reporter.rb +5 -4
- data/lib/rails/test_unit/runner.rb +8 -5
- data/lib/rails.rb +9 -2
- metadata +33 -14
- data/lib/rails/generators/rails/app/templates/config/initializers/new_framework_defaults_8_0.rb.tt +0 -30
- data/lib/rails/generators/test_unit/plugin/plugin_generator.rb +0 -15
- data/lib/rails/generators/test_unit/plugin/templates/%file_name%_test.rb.tt +0 -7
- data/lib/rails/generators/test_unit/plugin/templates/test_helper.rb +0 -2
@@ -0,0 +1,34 @@
|
|
1
|
+
# Run using bin/ci
|
2
|
+
|
3
|
+
CI.run do
|
4
|
+
step "Setup", "bin/setup --skip-server"
|
5
|
+
<% unless options.skip_rubocop? %>
|
6
|
+
step "Style: Ruby", "bin/rubocop"
|
7
|
+
<% end -%>
|
8
|
+
|
9
|
+
step "Security: Gem audit", "bin/bundler-audit"
|
10
|
+
<% if using_node? -%>
|
11
|
+
step "Security: Yarn vulnerability audit", "yarn audit"
|
12
|
+
<% end -%>
|
13
|
+
<% if using_importmap? -%>
|
14
|
+
step "Security: Importmap vulnerability audit", "bin/importmap audit"
|
15
|
+
<% end -%>
|
16
|
+
<% unless options.skip_brakeman? -%>
|
17
|
+
step "Security: Brakeman code analysis", "bin/brakeman --quiet --no-pager --exit-on-warn --exit-on-error"
|
18
|
+
<% end -%>
|
19
|
+
<% if options[:api] || options[:skip_system_test] -%>
|
20
|
+
step "Tests: Rails", "bin/rails test"
|
21
|
+
<% else %>
|
22
|
+
step "Tests: Rails", "bin/rails test"
|
23
|
+
step "Tests: System", "bin/rails test:system"
|
24
|
+
<% end -%>
|
25
|
+
step "Tests: Seeds", "env RAILS_ENV=test bin/rails db:seed:replant"
|
26
|
+
|
27
|
+
# Optional: set a green GitHub commit status to unblock PR merge.
|
28
|
+
# Requires the `gh` CLI and `gh extension install basecamp/gh-signoff`.
|
29
|
+
# if success?
|
30
|
+
# step "Signoff: All systems go. Ready for merge and deploy.", "gh signoff"
|
31
|
+
# else
|
32
|
+
# failure "Signoff: CI failed. Do not merge or deploy.", "Fix the issues and try again."
|
33
|
+
# end
|
34
|
+
end
|
@@ -12,7 +12,7 @@
|
|
12
12
|
default: &default
|
13
13
|
adapter: mysql2
|
14
14
|
encoding: utf8mb4
|
15
|
-
|
15
|
+
max_connections: <%%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
|
16
16
|
username: root
|
17
17
|
password:
|
18
18
|
<% if database.socket -%>
|
@@ -49,6 +49,14 @@ test:
|
|
49
49
|
# production:
|
50
50
|
# url: <%%= ENV["MY_APP_DATABASE_URL"] %>
|
51
51
|
#
|
52
|
+
<%- unless options.skip_solid? -%>
|
53
|
+
# Connection URLs for non-primary databases can also be configured using
|
54
|
+
# environment variables. The variable name is formed by concatenating the
|
55
|
+
# connection name with `_DATABASE_URL`. For example:
|
56
|
+
#
|
57
|
+
# CACHE_DATABASE_URL="mysql2://cacheuser:cachepass@localhost/cachedatabase"
|
58
|
+
#
|
59
|
+
<%- end -%>
|
52
60
|
# Read https://guides.rubyonrails.org/configuring.html#configuring-a-database
|
53
61
|
# for a full overview on how database connection configuration can be specified.
|
54
62
|
#
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# Install the pg driver:
|
4
4
|
# gem install pg
|
5
5
|
# On macOS with Homebrew:
|
6
|
-
# gem install pg -- --with-pg-config=/
|
6
|
+
# gem install pg -- --with-pg-config=/opt/homebrew/bin/pg_config
|
7
7
|
# On Windows:
|
8
8
|
# gem install pg
|
9
9
|
# Choose the win32 build.
|
@@ -17,7 +17,7 @@ default: &default
|
|
17
17
|
encoding: unicode
|
18
18
|
# For details on connection pooling, see Rails configuration guide
|
19
19
|
# https://guides.rubyonrails.org/configuring.html#database-pooling
|
20
|
-
|
20
|
+
max_connections: <%%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
|
21
21
|
<% if devcontainer? -%>
|
22
22
|
<%% if ENV["DB_HOST"] %>
|
23
23
|
host: <%%= ENV["DB_HOST"] %>
|
@@ -81,6 +81,14 @@ test:
|
|
81
81
|
# production:
|
82
82
|
# url: <%%= ENV["MY_APP_DATABASE_URL"] %>
|
83
83
|
#
|
84
|
+
<%- unless options.skip_solid? -%>
|
85
|
+
# Connection URLs for non-primary databases can also be configured using
|
86
|
+
# environment variables. The variable name is formed by concatenating the
|
87
|
+
# connection name with `_DATABASE_URL`. For example:
|
88
|
+
#
|
89
|
+
# CACHE_DATABASE_URL="postgres://cacheuser:cachepass@localhost/cachedatabase"
|
90
|
+
#
|
91
|
+
<%- end -%>
|
84
92
|
# Read https://guides.rubyonrails.org/configuring.html#configuring-a-database
|
85
93
|
# for a full overview on how database connection configuration can be specified.
|
86
94
|
#
|
@@ -12,7 +12,7 @@
|
|
12
12
|
default: &default
|
13
13
|
adapter: trilogy
|
14
14
|
encoding: utf8mb4
|
15
|
-
|
15
|
+
max_connections: <%%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
|
16
16
|
username: root
|
17
17
|
password:
|
18
18
|
host: <%%= ENV.fetch("DB_HOST") { "<%= database.host %>" } %>
|
@@ -51,6 +51,14 @@ test:
|
|
51
51
|
# production:
|
52
52
|
# url: <%%= ENV["MY_APP_DATABASE_URL"] %>
|
53
53
|
#
|
54
|
+
<%- unless options.skip_solid? -%>
|
55
|
+
# Connection URLs for non-primary databases can also be configured using
|
56
|
+
# environment variables. The variable name is formed by concatenating the
|
57
|
+
# connection name with `_DATABASE_URL`. For example:
|
58
|
+
#
|
59
|
+
# CACHE_DATABASE_URL="trilogy://cacheuser:cachepass@localhost/cachedatabase"
|
60
|
+
#
|
61
|
+
<%- end -%>
|
54
62
|
# Read https://guides.rubyonrails.org/configuring.html#configuring-a-database
|
55
63
|
# for a full overview on how database connection configuration can be specified.
|
56
64
|
#
|
@@ -38,7 +38,7 @@ env:
|
|
38
38
|
<% if skip_solid? -%>
|
39
39
|
# clear:
|
40
40
|
# # Set number of cores available to the application on each server (default: 1).
|
41
|
-
# WEB_CONCURRENCY:
|
41
|
+
# WEB_CONCURRENCY: auto
|
42
42
|
|
43
43
|
# # Match this to any external database server to configure Active Record correctly
|
44
44
|
# DB_HOST: 192.168.0.2
|
@@ -71,15 +71,15 @@ aliases:
|
|
71
71
|
console: app exec --interactive --reuse "bin/rails console"
|
72
72
|
shell: app exec --interactive --reuse "bash"
|
73
73
|
logs: app logs -f
|
74
|
-
dbc: app exec --interactive --reuse "bin/rails dbconsole"
|
74
|
+
dbc: app exec --interactive --reuse "bin/rails dbconsole --include-password"
|
75
75
|
|
76
|
-
<% unless skip_storage?
|
76
|
+
<% unless skip_storage? -%>
|
77
77
|
# Use a persistent storage volume for sqlite database files and local Active Storage files.
|
78
78
|
# Recommended to change this to a mounted volume path that is backed up off server.
|
79
79
|
volumes:
|
80
80
|
- "<%= app_name %>_storage:/rails/storage"
|
81
81
|
|
82
|
-
<% end
|
82
|
+
<% end -%>
|
83
83
|
# Bridge fingerprinted assets, like JS and CSS, between versions to avoid
|
84
84
|
# hitting 404 on in-flight requests. Combines all files from new and old
|
85
85
|
# version inside the asset_path.
|
@@ -121,7 +121,7 @@ builder:
|
|
121
121
|
# directories:
|
122
122
|
# - data:/var/lib/mysql
|
123
123
|
# redis:
|
124
|
-
# image:
|
124
|
+
# image: valkey/valkey:8
|
125
125
|
# host: 192.168.0.2
|
126
126
|
# port: 6379
|
127
127
|
# directories:
|
@@ -64,6 +64,11 @@ Rails.application.configure do
|
|
64
64
|
# Highlight code that enqueued background job in logs.
|
65
65
|
config.active_job.verbose_enqueue_logs = true
|
66
66
|
|
67
|
+
<%- end -%>
|
68
|
+
<%- unless options[:skip_asset_pipeline] -%>
|
69
|
+
# Suppress logger output for asset requests.
|
70
|
+
config.assets.quiet = true
|
71
|
+
|
67
72
|
<%- end -%>
|
68
73
|
# Raises error for missing translations.
|
69
74
|
# config.i18n.raise_on_missing_translations = true
|
@@ -17,8 +17,20 @@ Rails.application.configure do
|
|
17
17
|
config.action_controller.perform_caching = true
|
18
18
|
<%- end -%>
|
19
19
|
|
20
|
-
# Cache assets for far-future expiry
|
21
|
-
|
20
|
+
# Cache digest stamped assets for far-future expiry.
|
21
|
+
# Short cache for others: robots.txt, sitemap.xml, 404.html, etc.
|
22
|
+
config.public_file_server.headers = {
|
23
|
+
"cache-control" => lambda do |path, _|
|
24
|
+
if path.start_with?("/assets/")
|
25
|
+
# Files in /assets/ are expected to be fully immutable.
|
26
|
+
# If the content change the URL too.
|
27
|
+
"public, immutable, max-age=#{1.year.to_i}"
|
28
|
+
else
|
29
|
+
# For anything else we cache for 1 minute.
|
30
|
+
"public, max-age=#{1.minute.to_i}, stale-while-revalidate=#{5.minutes.to_i}"
|
31
|
+
end
|
32
|
+
end
|
33
|
+
}
|
22
34
|
|
23
35
|
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
|
24
36
|
# config.asset_host = "http://assets.example.com"
|
@@ -41,7 +53,7 @@ Rails.application.configure do
|
|
41
53
|
config.log_tags = [ :request_id ]
|
42
54
|
config.logger = ActiveSupport::TaggedLogging.logger(STDOUT)
|
43
55
|
|
44
|
-
# Change to "debug" to log everything (including potentially personally-identifiable information!)
|
56
|
+
# Change to "debug" to log everything (including potentially personally-identifiable information!).
|
45
57
|
config.log_level = ENV.fetch("RAILS_LOG_LEVEL", "info")
|
46
58
|
|
47
59
|
# Prevent health checks from clogging up the logs.
|
@@ -66,7 +78,7 @@ Rails.application.configure do
|
|
66
78
|
# Set host to be used by links generated in mailer templates.
|
67
79
|
config.action_mailer.default_url_options = { host: "example.com" }
|
68
80
|
|
69
|
-
# Specify outgoing SMTP server. Remember to add smtp/* credentials via rails credentials:edit.
|
81
|
+
# Specify outgoing SMTP server. Remember to add smtp/* credentials via bin/rails credentials:edit.
|
70
82
|
# config.action_mailer.smtp_settings = {
|
71
83
|
# user_name: Rails.application.credentials.dig(:smtp, :user_name),
|
72
84
|
# password: Rails.application.credentials.dig(:smtp, :password),
|
data/lib/rails/generators/rails/app/templates/config/initializers/content_security_policy.rb.tt
CHANGED
@@ -20,6 +20,10 @@
|
|
20
20
|
# config.content_security_policy_nonce_generator = ->(request) { request.session.id.to_s }
|
21
21
|
# config.content_security_policy_nonce_directives = %w(script-src style-src)
|
22
22
|
#
|
23
|
+
# # Automatically add `nonce` to `javascript_tag`, `javascript_include_tag`, and `stylesheet_link_tag`
|
24
|
+
# # if the corresponding directives are specified in `content_security_policy_nonce_directives`.
|
25
|
+
# # config.content_security_policy_nonce_auto = true
|
26
|
+
#
|
23
27
|
# # Report violations without enforcing the policy.
|
24
28
|
# # config.content_security_policy_report_only = true
|
25
29
|
# end
|
data/lib/rails/generators/rails/app/templates/config/initializers/new_framework_defaults_8_1.rb.tt
ADDED
@@ -0,0 +1,66 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
#
|
3
|
+
# This file eases your Rails 8.1 framework defaults upgrade.
|
4
|
+
#
|
5
|
+
# Uncomment each configuration one by one to switch to the new default.
|
6
|
+
# Once your application is ready to run with all new defaults, you can remove
|
7
|
+
# this file and set the `config.load_defaults` to `8.1`.
|
8
|
+
#
|
9
|
+
# Read the Guide for Upgrading Ruby on Rails for more info on each option.
|
10
|
+
# https://guides.rubyonrails.org/upgrading_ruby_on_rails.html
|
11
|
+
|
12
|
+
###
|
13
|
+
# Skips escaping HTML entities and line separators. When set to `false`, the
|
14
|
+
# JSON renderer no longer escapes these to improve performance.
|
15
|
+
#
|
16
|
+
# Example:
|
17
|
+
# class PostsController < ApplicationController
|
18
|
+
# def index
|
19
|
+
# render json: { key: "\u2028\u2029<>&" }
|
20
|
+
# end
|
21
|
+
# end
|
22
|
+
#
|
23
|
+
# Renders `{"key":"\u2028\u2029\u003c\u003e\u0026"}` with the previous default, but `{"key":"
<>&"}` with the config
|
24
|
+
# set to `false`.
|
25
|
+
#
|
26
|
+
# Applications that want to keep the escaping behavior can set the config to `true`.
|
27
|
+
#++
|
28
|
+
# Rails.configuration.action_controller.escape_json_responses = false
|
29
|
+
|
30
|
+
###
|
31
|
+
# Raises an error when order dependent finder methods (e.g. `#first`, `#second`) are called without `order` values
|
32
|
+
# on the relation, and the model does not have any order columns (`implicit_order_column`, `query_constraints`, or
|
33
|
+
# `primary_key`) to fall back on.
|
34
|
+
#
|
35
|
+
# The current behavior of not raising an error has been deprecated, and this configuration option will be removed in
|
36
|
+
# Rails 8.2.
|
37
|
+
#++
|
38
|
+
# Rails.configuration.active_record.raise_on_missing_required_finder_order_columns = true
|
39
|
+
|
40
|
+
###
|
41
|
+
# Controls how Rails handles path relative URL redirects.
|
42
|
+
# When set to `:raise`, Rails will raise an `ActionController::Redirecting::UnsafeRedirectError`
|
43
|
+
# for relative URLs without a leading slash, which can help prevent open redirect vulnerabilities.
|
44
|
+
#
|
45
|
+
# Example:
|
46
|
+
# redirect_to "example.com" # Raises UnsafeRedirectError
|
47
|
+
# redirect_to "@attacker.com" # Raises UnsafeRedirectError
|
48
|
+
# redirect_to "/safe/path" # Works correctly
|
49
|
+
#
|
50
|
+
# Applications that want to allow these redirects can set the config to `:log` (previous default)
|
51
|
+
# to only log warnings, or `:notify` to send ActiveSupport notifications.
|
52
|
+
#++
|
53
|
+
# Rails.configuration.action_controller.action_on_path_relative_redirect = :raise
|
54
|
+
|
55
|
+
###
|
56
|
+
# Use a Ruby parser to track dependencies between Action View templates
|
57
|
+
#++
|
58
|
+
# Rails.configuration.action_view.render_tracker = :ruby
|
59
|
+
|
60
|
+
###
|
61
|
+
# When enabled, hidden inputs generated by `form_tag`, `token_tag`, `method_tag`, and the hidden parameter fields
|
62
|
+
# included in `button_to` forms will omit the `autocomplete="off"` attribute.
|
63
|
+
#
|
64
|
+
# Applications that want to keep generating the `autocomplete` attribute for those tags can set it to `false`.
|
65
|
+
#++
|
66
|
+
# Rails.configuration.action_view.remove_hidden_field_autocomplete = true
|
@@ -7,7 +7,8 @@
|
|
7
7
|
#
|
8
8
|
# You can control the number of workers using ENV["WEB_CONCURRENCY"]. You
|
9
9
|
# should only set this value when you want to run 2 or more workers. The
|
10
|
-
# default is already 1.
|
10
|
+
# default is already 1. You can set it to `auto` to automatically start a worker
|
11
|
+
# for each available processor.
|
11
12
|
#
|
12
13
|
# The ideal number of threads per worker depends both on how much time the
|
13
14
|
# application spends waiting for IO operations and on how much you wish to
|
@@ -34,7 +35,7 @@ port ENV.fetch("PORT", 3000)
|
|
34
35
|
plugin :tmp_restart
|
35
36
|
|
36
37
|
<% unless skip_solid? -%>
|
37
|
-
# Run the Solid Queue supervisor inside of Puma for single-server deployments
|
38
|
+
# Run the Solid Queue supervisor inside of Puma for single-server deployments.
|
38
39
|
plugin :solid_queue if ENV["SOLID_QUEUE_IN_PUMA"]
|
39
40
|
|
40
41
|
<% end -%>
|
@@ -21,13 +21,6 @@ local:
|
|
21
21
|
# credentials: <%%= Rails.root.join("path/to/gcs.keyfile") %>
|
22
22
|
# bucket: your_own_bucket-<%%= Rails.env %>
|
23
23
|
|
24
|
-
# Use bin/rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key)
|
25
|
-
# microsoft:
|
26
|
-
# service: AzureStorage
|
27
|
-
# storage_account_name: your_account_name
|
28
|
-
# storage_access_key: <%%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %>
|
29
|
-
# container: your_container_name-<%%= Rails.env %>
|
30
|
-
|
31
24
|
# mirror:
|
32
25
|
# service: Mirror
|
33
26
|
# primary: local
|
@@ -1,11 +1,5 @@
|
|
1
1
|
#!/bin/bash -e
|
2
2
|
|
3
|
-
# Enable jemalloc for reduced memory usage and latency.
|
4
|
-
if [ -z "${LD_PRELOAD+x}" ]; then
|
5
|
-
LD_PRELOAD=$(find /usr/lib -name libjemalloc.so.2 -print -quit)
|
6
|
-
export LD_PRELOAD
|
7
|
-
fi
|
8
|
-
|
9
3
|
<% unless skip_active_record? -%>
|
10
4
|
# If running the rails server then create or migrate existing database
|
11
5
|
if [ "${@: -2:1}" == "./bin/rails" ] && [ "${@: -1:1}" == "server" ]; then
|
@@ -3,7 +3,7 @@ name: CI
|
|
3
3
|
on:
|
4
4
|
pull_request:
|
5
5
|
push:
|
6
|
-
branches: [
|
6
|
+
branches: [ <%= user_default_branch %> ]
|
7
7
|
|
8
8
|
jobs:
|
9
9
|
<%- unless skip_brakeman? -%>
|
@@ -12,30 +12,31 @@ jobs:
|
|
12
12
|
|
13
13
|
steps:
|
14
14
|
- name: Checkout code
|
15
|
-
uses: actions/checkout@
|
15
|
+
uses: actions/checkout@v5
|
16
16
|
|
17
17
|
- name: Set up Ruby
|
18
18
|
uses: ruby/setup-ruby@v1
|
19
19
|
with:
|
20
|
-
ruby-version: .ruby-version
|
21
20
|
bundler-cache: true
|
22
21
|
|
23
22
|
- name: Scan for common Rails security vulnerabilities using static analysis
|
24
23
|
run: bin/brakeman --no-pager
|
25
24
|
|
25
|
+
- name: Scan for known security vulnerabilities in gems used
|
26
|
+
run: bin/bundler-audit
|
27
|
+
|
26
28
|
<% end -%>
|
27
|
-
<%- if
|
29
|
+
<%- if using_importmap? -%>
|
28
30
|
scan_js:
|
29
31
|
runs-on: ubuntu-latest
|
30
32
|
|
31
33
|
steps:
|
32
34
|
- name: Checkout code
|
33
|
-
uses: actions/checkout@
|
35
|
+
uses: actions/checkout@v5
|
34
36
|
|
35
37
|
- name: Set up Ruby
|
36
38
|
uses: ruby/setup-ruby@v1
|
37
39
|
with:
|
38
|
-
ruby-version: .ruby-version
|
39
40
|
bundler-cache: true
|
40
41
|
|
41
42
|
- name: Scan for security vulnerabilities in JavaScript dependencies
|
@@ -45,16 +46,27 @@ jobs:
|
|
45
46
|
<%- unless skip_rubocop? -%>
|
46
47
|
lint:
|
47
48
|
runs-on: ubuntu-latest
|
49
|
+
env:
|
50
|
+
RUBOCOP_CACHE_ROOT: tmp/rubocop
|
48
51
|
steps:
|
49
52
|
- name: Checkout code
|
50
|
-
uses: actions/checkout@
|
53
|
+
uses: actions/checkout@v5
|
51
54
|
|
52
55
|
- name: Set up Ruby
|
53
56
|
uses: ruby/setup-ruby@v1
|
54
57
|
with:
|
55
|
-
ruby-version: .ruby-version
|
56
58
|
bundler-cache: true
|
57
59
|
|
60
|
+
- name: Prepare RuboCop cache
|
61
|
+
uses: actions/cache@v4
|
62
|
+
env:
|
63
|
+
DEPENDENCIES_HASH: ${{ hashFiles('.ruby-version', '**/.rubocop.yml', '**/.rubocop_todo.yml', 'Gemfile.lock') }}
|
64
|
+
with:
|
65
|
+
path: ${{ env.RUBOCOP_CACHE_ROOT }}
|
66
|
+
key: rubocop-${{ runner.os }}-${{ env.DEPENDENCIES_HASH }}-${{ github.ref_name == github.event.repository.default_branch && github.run_id || 'default' }}
|
67
|
+
restore-keys: |
|
68
|
+
rubocop-${{ runner.os }}-${{ env.DEPENDENCIES_HASH }}-
|
69
|
+
|
58
70
|
- name: Lint code for consistent style
|
59
71
|
run: bin/rubocop -f github
|
60
72
|
|
@@ -66,7 +78,7 @@ jobs:
|
|
66
78
|
<%- if options[:database] == "sqlite3" -%>
|
67
79
|
# services:
|
68
80
|
# redis:
|
69
|
-
# image:
|
81
|
+
# image: valkey/valkey:8
|
70
82
|
# ports:
|
71
83
|
# - 6379:6379
|
72
84
|
# options: --health-cmd "redis-cli ping" --health-interval 10s --health-timeout 5s --health-retries 5
|
@@ -92,23 +104,24 @@ jobs:
|
|
92
104
|
<%- end -%>
|
93
105
|
|
94
106
|
# redis:
|
95
|
-
# image:
|
107
|
+
# image: valkey/valkey:8
|
96
108
|
# ports:
|
97
109
|
# - 6379:6379
|
98
110
|
# options: --health-cmd "redis-cli ping" --health-interval 10s --health-timeout 5s --health-retries 5
|
99
111
|
|
100
112
|
<%- end -%>
|
101
113
|
steps:
|
114
|
+
<%- unless ci_packages.empty? -%>
|
102
115
|
- name: Install packages
|
103
116
|
run: sudo apt-get update && sudo apt-get install --no-install-recommends -y <%= ci_packages.join(" ") %>
|
104
117
|
|
118
|
+
<%- end -%>
|
105
119
|
- name: Checkout code
|
106
|
-
uses: actions/checkout@
|
120
|
+
uses: actions/checkout@v5
|
107
121
|
|
108
122
|
- name: Set up Ruby
|
109
123
|
uses: ruby/setup-ruby@v1
|
110
124
|
with:
|
111
|
-
ruby-version: .ruby-version
|
112
125
|
bundler-cache: true
|
113
126
|
<%- if using_bun? -%>
|
114
127
|
|
@@ -127,13 +140,82 @@ jobs:
|
|
127
140
|
<%- elsif options[:database] == "postgresql" -%>
|
128
141
|
DATABASE_URL: postgres://postgres:postgres@localhost:5432
|
129
142
|
<%- end -%>
|
143
|
+
# RAILS_MASTER_KEY: ${{ secrets.RAILS_MASTER_KEY }}
|
130
144
|
# REDIS_URL: redis://localhost:6379/0
|
131
|
-
<%- if options[:api] || options[:skip_system_test] -%>
|
132
145
|
run: bin/rails db:test:prepare test
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
146
|
+
<%- unless options[:api] || options[:skip_system_test] -%>
|
147
|
+
|
148
|
+
system-test:
|
149
|
+
runs-on: ubuntu-latest
|
150
|
+
|
151
|
+
<%- if options[:database] == "sqlite3" -%>
|
152
|
+
# services:
|
153
|
+
# redis:
|
154
|
+
# image: valkey/valkey:8
|
155
|
+
# ports:
|
156
|
+
# - 6379:6379
|
157
|
+
# options: --health-cmd "redis-cli ping" --health-interval 10s --health-timeout 5s --health-retries 5
|
158
|
+
<%- else -%>
|
159
|
+
services:
|
160
|
+
<%- if options[:database] == "mysql" || options[:database] == "trilogy" -%>
|
161
|
+
mysql:
|
162
|
+
image: mysql
|
163
|
+
env:
|
164
|
+
MYSQL_ALLOW_EMPTY_PASSWORD: true
|
165
|
+
ports:
|
166
|
+
- 3306:3306
|
167
|
+
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
|
168
|
+
<%- elsif options[:database] == "postgresql" -%>
|
169
|
+
postgres:
|
170
|
+
image: postgres
|
171
|
+
env:
|
172
|
+
POSTGRES_USER: postgres
|
173
|
+
POSTGRES_PASSWORD: postgres
|
174
|
+
ports:
|
175
|
+
- 5432:5432
|
176
|
+
options: --health-cmd="pg_isready" --health-interval=10s --health-timeout=5s --health-retries=3
|
177
|
+
<%- end -%>
|
178
|
+
|
179
|
+
# redis:
|
180
|
+
# image: valkey/valkey:8
|
181
|
+
# ports:
|
182
|
+
# - 6379:6379
|
183
|
+
# options: --health-cmd "redis-cli ping" --health-interval 10s --health-timeout 5s --health-retries 5
|
184
|
+
|
185
|
+
<%- end -%>
|
186
|
+
steps:
|
187
|
+
<%- unless ci_packages.empty? -%>
|
188
|
+
- name: Install packages
|
189
|
+
run: sudo apt-get update && sudo apt-get install --no-install-recommends -y <%= ci_packages.join(" ") %>
|
190
|
+
|
191
|
+
<%- end -%>
|
192
|
+
- name: Checkout code
|
193
|
+
uses: actions/checkout@v5
|
194
|
+
|
195
|
+
- name: Set up Ruby
|
196
|
+
uses: ruby/setup-ruby@v1
|
197
|
+
with:
|
198
|
+
bundler-cache: true
|
199
|
+
<%- if using_bun? -%>
|
200
|
+
|
201
|
+
- uses: oven-sh/setup-bun@v1
|
202
|
+
with:
|
203
|
+
bun-version: <%= dockerfile_bun_version %>
|
204
|
+
<%- end -%>
|
205
|
+
|
206
|
+
- name: Run System Tests
|
207
|
+
env:
|
208
|
+
RAILS_ENV: test
|
209
|
+
<%- if options[:database] == "mysql" -%>
|
210
|
+
DATABASE_URL: mysql2://127.0.0.1:3306
|
211
|
+
<%- elsif options[:database] == "trilogy" -%>
|
212
|
+
DATABASE_URL: trilogy://127.0.0.1:3306
|
213
|
+
<%- elsif options[:database] == "postgresql" -%>
|
214
|
+
DATABASE_URL: postgres://postgres:postgres@localhost:5432
|
215
|
+
<%- end -%>
|
216
|
+
# RAILS_MASTER_KEY: ${{ secrets.RAILS_MASTER_KEY }}
|
217
|
+
# REDIS_URL: redis://localhost:6379/0
|
218
|
+
run: bin/rails db:test:prepare test:system
|
137
219
|
|
138
220
|
- name: Keep screenshots from failed system tests
|
139
221
|
uses: actions/upload-artifact@v4
|
@@ -142,5 +224,5 @@ jobs:
|
|
142
224
|
name: screenshots
|
143
225
|
path: ${{ github.workspace }}/tmp/screenshots
|
144
226
|
if-no-files-found: ignore
|
145
|
-
|
146
|
-
|
227
|
+
<%- end -%>
|
228
|
+
<%- end -%>
|
@@ -3,10 +3,10 @@ updates:
|
|
3
3
|
- package-ecosystem: bundler
|
4
4
|
directory: "/"
|
5
5
|
schedule:
|
6
|
-
interval:
|
6
|
+
interval: weekly
|
7
7
|
open-pull-requests-limit: 10
|
8
8
|
- package-ecosystem: github-actions
|
9
9
|
directory: "/"
|
10
10
|
schedule:
|
11
|
-
interval:
|
11
|
+
interval: weekly
|
12
12
|
open-pull-requests-limit: 10
|
@@ -7,6 +7,9 @@
|
|
7
7
|
# KAMAL_REGISTRY_PASSWORD=$(kamal secrets extract KAMAL_REGISTRY_PASSWORD ${SECRETS})
|
8
8
|
# RAILS_MASTER_KEY=$(kamal secrets extract RAILS_MASTER_KEY ${SECRETS})
|
9
9
|
|
10
|
+
# Example of extracting secrets from Rails credentials
|
11
|
+
# KAMAL_REGISTRY_PASSWORD=$(rails credentials:fetch kamal.registry_password)
|
12
|
+
|
10
13
|
# Use a GITHUB_TOKEN if private repositories are needed for the image
|
11
14
|
# GITHUB_TOKEN=$(gh config get -h github.com oauth_token)
|
12
15
|
|
@@ -105,7 +105,7 @@
|
|
105
105
|
<svg height="172" viewBox="0 0 480 172" width="480" xmlns="http://www.w3.org/2000/svg"><path d="m124.48 3.00509-45.6889 100.02991h26.2239v-28.1168h38.119v28.1168h21.628v35.145h-21.628v30.82h-37.308v-30.82h-72.1833v-31.901l50.2851-103.27391zm115.583 168.69891c-40.822 0-64.884-35.146-64.884-85.7015 0-50.5554 24.062-85.700907 64.884-85.700907 40.823 0 64.884 35.145507 64.884 85.700907 0 50.5555-24.061 85.7015-64.884 85.7015zm0-133.2831c-17.572 0-22.709 21.8984-22.709 47.5816 0 25.6835 5.137 47.5815 22.709 47.5815 17.303 0 22.71-21.898 22.71-47.5815 0-25.6832-5.407-47.5816-22.71-47.5816zm140.456 133.2831c-40.823 0-64.884-35.146-64.884-85.7015 0-50.5554 24.061-85.700907 64.884-85.700907 40.822 0 64.884 35.145507 64.884 85.700907 0 50.5555-24.062 85.7015-64.884 85.7015zm0-133.2831c-17.573 0-22.71 21.8984-22.71 47.5816 0 25.6835 5.137 47.5815 22.71 47.5815 17.302 0 22.709-21.898 22.709-47.5815 0-25.6832-5.407-47.5816-22.709-47.5816z" fill="#f0eff0"/><path d="m123.606 85.4445c3.212 1.0523 5.538 4.2089 5.538 8.0301 0 6.1472-4.209 9.5254-11.298 9.5254h-15.617v-34.0033h14.565c7.089 0 11.353 3.1566 11.353 9.2484 0 3.6551-2.049 6.3134-4.541 7.1994zm-12.904-2.9905h5.095c2.603 0 3.988-.9968 3.988-3.1013 0-2.1044-1.385-3.0459-3.988-3.0459h-5.095zm0 6.6456v6.5902h5.981c2.492 0 3.877-1.3291 3.877-3.2674 0-2.049-1.385-3.3228-3.877-3.3228zm43.786 13.9004h-8.362v-1.274c-.831.831-3.323 1.717-5.981 1.717-4.929 0-9.083-2.769-9.083-8.0301 0-4.818 4.154-7.9193 9.581-7.9193 2.049 0 4.486.6646 5.483 1.3845v-1.606c0-1.606-.942-2.9905-3.046-2.9905-1.606 0-2.548.7199-2.935 1.8275h-8.197c.72-4.8181 4.985-8.6393 11.409-8.6393 7.088 0 11.131 3.7659 11.131 10.2453zm-8.362-6.9779v-1.4399c-.554-1.0522-2.049-1.7167-3.655-1.7167-1.717 0-3.434.7199-3.434 2.3813 0 1.7168 1.717 2.4367 3.434 2.4367 1.606 0 3.101-.6645 3.655-1.6614zm27.996 6.9779v-1.994c-1.163 1.329-3.599 2.548-6.147 2.548-7.199 0-11.131-5.8151-11.131-13.0145s3.932-13.0143 11.131-13.0143c2.548 0 4.984 1.2184 6.147 2.5475v-13.0697h8.695v35.997zm0-9.1931v-6.5902c-.664-1.3291-2.159-2.326-3.821-2.326-2.99 0-4.763 2.4368-4.763 5.6488s1.773 5.5934 4.763 5.5934c1.717 0 3.157-.9415 3.821-2.326zm35.471-2.049h-3.101v11.2421h-8.806v-34.0033h15.285c7.31 0 12.35 4.1535 12.35 11.5744 0 5.1503-2.603 8.6947-6.757 10.2453l7.975 12.1836h-9.858zm-3.101-15.2849v8.1962h5.538c3.156 0 4.596-1.606 4.596-4.0981s-1.44-4.0981-4.596-4.0981zm36.957 17.8323h8.03c-.886 5.7597-5.206 9.2487-11.685 9.2487-7.643 0-12.682-5.2613-12.682-13.0145 0-7.6978 5.316-13.0143 12.515-13.0143 7.643 0 11.962 5.095 11.962 12.5159v2.1598h-16.115c.277 2.9905 1.827 4.5965 4.32 4.5965 1.772 0 3.156-.7753 3.655-2.4921zm-3.822-10.0237c-2.049 0-3.433 1.2737-3.987 3.5997h7.532c-.111-2.0491-1.385-3.5997-3.545-3.5997zm30.98 27.5234v-10.799c-1.163 1.329-3.6 2.548-6.147 2.548-7.2 0-11.132-5.9259-11.132-13.0145 0-7.144 3.932-13.0143 11.132-13.0143 2.547 0 4.984 1.2184 6.147 2.5475v-1.9937h8.695v33.726zm0-17.9981v-6.5902c-.665-1.3291-2.105-2.326-3.821-2.326-2.991 0-4.763 2.4368-4.763 5.6488s1.772 5.5934 4.763 5.5934c1.661 0 3.156-.9415 3.821-2.326zm36.789-15.7279v24.921h-8.695v-2.16c-1.329 1.551-3.821 2.714-6.646 2.714-5.482 0-8.75-3.5999-8.75-9.1379v-16.3371h8.64v14.288c0 2.1045.996 3.5997 3.212 3.5997 1.606 0 3.101-1.0522 3.544-2.769v-15.1187zm19.084 16.2263h8.03c-.886 5.7597-5.206 9.2487-11.685 9.2487-7.643 0-12.682-5.2613-12.682-13.0145 0-7.6978 5.316-13.0143 12.515-13.0143 7.643 0 11.963 5.095 11.963 12.5159v2.1598h-16.116c.277 2.9905 1.828 4.5965 4.32 4.5965 1.772 0 3.156-.7753 3.655-2.4921zm-3.822-10.0237c-2.049 0-3.433 1.2737-3.987 3.5997h7.532c-.111-2.0491-1.385-3.5997-3.545-3.5997zm13.428 11.0206h8.474c.387 1.3845 1.606 2.1598 3.156 2.1598 1.44 0 2.548-.5538 2.548-1.7168 0-.9414-.72-1.2737-1.939-1.5506l-4.873-.9969c-4.154-.886-6.867-2.8797-6.867-7.2547 0-5.3165 4.762-8.4178 10.633-8.4178 6.812 0 10.522 3.1567 11.297 8.0855h-8.03c-.277-1.0522-1.052-1.9937-3.046-1.9937-1.273 0-2.326.5538-2.326 1.6614 0 .7753.554 1.163 1.717 1.3845l4.929 1.163c4.541 1.0522 6.978 3.4335 6.978 7.4763 0 5.3168-4.818 8.2518-10.91 8.2518-6.369 0-10.965-2.88-11.741-8.2518zm27.538-.8861v-9.5807h-3.655v-6.7564h3.655v-6.8671h8.584v6.8671h5.205v6.7564h-5.205v8.307c0 1.9383.941 2.769 2.658 2.769.941 0 1.993-.2216 2.769-.5538v7.3654c-.997.443-2.88.775-4.818.775-5.871 0-9.193-2.769-9.193-9.0819z" fill="#d30001"/></svg>
|
106
106
|
</header>
|
107
107
|
<article>
|
108
|
-
<p><strong>The server cannot process the request due to a client error.</strong> Please check the request and try again. If you
|
108
|
+
<p><strong>The server cannot process the request due to a client error.</strong> Please check the request and try again. If you're the application owner check the logs for more information.</p>
|
109
109
|
</article>
|
110
110
|
</main>
|
111
111
|
|
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
<head>
|
6
6
|
|
7
|
-
<title>The page you were looking for doesn
|
7
|
+
<title>The page you were looking for doesn't exist (404 Not found)</title>
|
8
8
|
|
9
9
|
<meta charset="utf-8">
|
10
10
|
<meta name="viewport" content="initial-scale=1, width=device-width">
|
@@ -105,7 +105,7 @@
|
|
105
105
|
<svg height="172" viewBox="0 0 480 172" width="480" xmlns="http://www.w3.org/2000/svg"><path d="m124.48 3.00509-45.6889 100.02991h26.2239v-28.1168h38.119v28.1168h21.628v35.145h-21.628v30.82h-37.308v-30.82h-72.1833v-31.901l50.2851-103.27391zm115.583 168.69891c-40.822 0-64.884-35.146-64.884-85.7015 0-50.5554 24.062-85.700907 64.884-85.700907 40.823 0 64.884 35.145507 64.884 85.700907 0 50.5555-24.061 85.7015-64.884 85.7015zm0-133.2831c-17.572 0-22.709 21.8984-22.709 47.5816 0 25.6835 5.137 47.5815 22.709 47.5815 17.303 0 22.71-21.898 22.71-47.5815 0-25.6832-5.407-47.5816-22.71-47.5816zm165.328-35.41581-45.689 100.02991h26.224v-28.1168h38.119v28.1168h21.628v35.145h-21.628v30.82h-37.308v-30.82h-72.184v-31.901l50.285-103.27391z" fill="#f0eff0"/><path d="m157.758 68.9967v34.0033h-7.199l-14.233-19.8814v19.8814h-8.584v-34.0033h8.307l13.125 18.7184v-18.7184zm28.454 21.5428c0 7.6978-5.15 13.0145-12.737 13.0145-7.532 0-12.738-5.3167-12.738-13.0145s5.206-13.0143 12.738-13.0143c7.587 0 12.737 5.3165 12.737 13.0143zm-8.528 0c0-3.4336-1.496-5.8703-4.209-5.8703-2.659 0-4.154 2.4367-4.154 5.8703s1.495 5.8149 4.154 5.8149c2.713 0 4.209-2.3813 4.209-5.8149zm13.184 3.8766v-9.5807h-3.655v-6.7564h3.655v-6.8671h8.584v6.8671h5.205v6.7564h-5.205v8.307c0 1.9383.941 2.769 2.658 2.769.941 0 1.994-.2216 2.769-.5538v7.3654c-.997.443-2.88.775-4.818.775-5.87 0-9.193-2.769-9.193-9.0819zm37.027 8.5839h-8.806v-34.0033h23.924v7.6978h-15.118v6.7564h13.9v7.5316h-13.9zm41.876-12.4605c0 7.6978-5.15 13.0145-12.737 13.0145-7.532 0-12.738-5.3167-12.738-13.0145s5.206-13.0143 12.738-13.0143c7.587 0 12.737 5.3165 12.737 13.0143zm-8.529 0c0-3.4336-1.495-5.8703-4.208-5.8703-2.659 0-4.154 2.4367-4.154 5.8703s1.495 5.8149 4.154 5.8149c2.713 0 4.208-2.3813 4.208-5.8149zm35.337-12.4605v24.921h-8.695v-2.16c-1.329 1.551-3.821 2.714-6.646 2.714-5.482 0-8.75-3.5999-8.75-9.1379v-16.3371h8.64v14.288c0 2.1045.997 3.5997 3.212 3.5997 1.606 0 3.101-1.0522 3.544-2.769v-15.1187zm4.076 24.921v-24.921h8.694v2.1598c1.385-1.5506 3.822-2.7136 6.701-2.7136 5.538 0 8.806 3.5997 8.806 9.1377v16.3371h-8.639v-14.2327c0-2.049-1.053-3.5443-3.268-3.5443-1.717 0-3.156.9969-3.6 2.7136v15.0634zm44.113 0v-1.994c-1.163 1.329-3.6 2.548-6.147 2.548-7.2 0-11.132-5.8151-11.132-13.0145s3.932-13.0143 11.132-13.0143c2.547 0 4.984 1.2184 6.147 2.5475v-13.0697h8.695v35.997zm0-9.1931v-6.5902c-.665-1.3291-2.16-2.326-3.821-2.326-2.991 0-4.763 2.4368-4.763 5.6488s1.772 5.5934 4.763 5.5934c1.717 0 3.156-.9415 3.821-2.326z" fill="#d30001"/></svg>
|
106
106
|
</header>
|
107
107
|
<article>
|
108
|
-
<p><strong>The page you were looking for doesn
|
108
|
+
<p><strong>The page you were looking for doesn't exist.</strong> You may have mistyped the address or the page may have moved. If you're the application owner check the logs for more information.</p>
|
109
109
|
</article>
|
110
110
|
</main>
|
111
111
|
|
@@ -105,7 +105,7 @@
|
|
105
105
|
<svg height="172" viewBox="0 0 480 172" width="480" xmlns="http://www.w3.org/2000/svg"><path d="m124.48 3.00509-45.6889 100.02991h26.2239v-28.1168h38.119v28.1168h21.628v35.145h-21.628v30.82h-37.308v-30.82h-72.1833v-31.901l50.2851-103.27391zm130.453 51.63681c0-8.9215-6.218-15.4099-15.681-15.4099-10.273 0-15.95 7.5698-16.491 16.4913h-44.608c3.244-30.8199 25.683-55.421707 61.099-55.421707 36.498 0 59.477 20.816907 59.477 51.636807 0 21.3577-14.869 36.7676-31.901 52.7186l-27.305 27.035h59.747v37.308h-120.306v-27.846l57.044-56.7736c11.084-11.8954 18.925-20.0059 18.925-29.7385zm140.455 0c0-8.9215-6.218-15.4099-15.68-15.4099-10.274 0-15.951 7.5698-16.492 16.4913h-44.608c3.245-30.8199 25.684-55.421707 61.1-55.421707 36.497 0 59.477 20.816907 59.477 51.636807 0 21.3577-14.87 36.7676-31.902 52.7186l-27.305 27.035h59.747v37.308h-120.305v-27.846l57.043-56.7736c11.085-11.8954 18.925-20.0059 18.925-29.7385z" fill="#f0eff0"/><path d="m19.3936 103.554c-8.9715 0-14.84183-5.0952-14.84183-14.4544v-20.1029h8.86083v19.3276c0 4.8181 2.2706 7.3102 5.981 7.3102 3.6551 0 5.9257-2.4921 5.9257-7.3102v-19.3276h8.8608v20.1583c0 9.3038-5.8149 14.399-14.7865 14.399zm18.734-.554v-24.921h8.6947v2.1598c1.3845-1.5506 3.8212-2.7136 6.701-2.7136 5.538 0 8.8054 3.5997 8.8054 9.1377v16.3371h-8.6393v-14.2327c0-2.049-1.0522-3.5443-3.2674-3.5443-1.7168 0-3.1567.9969-3.5997 2.7136v15.0634zm36.8584-1.994v10.799h-8.6946v-33.726h8.6946v1.9937c1.163-1.3291 3.5997-2.5475 6.1472-2.5475 7.1994 0 11.1314 5.8703 11.1314 13.0143 0 7.0886-3.932 13.0145-11.1314 13.0145-2.5475 0-4.9842-1.219-6.1472-2.548zm0-13.7893v6.5902c.6646 1.3845 2.1599 2.326 3.8213 2.326 2.9905 0 4.7626-2.3814 4.7626-5.5934s-1.7721-5.6488-4.7626-5.6488c-1.7168 0-3.1567.9969-3.8213 2.326zm36.789-9.2485v8.3624c-1.052-.5538-2.215-.7753-3.6-.7753-2.381 0-3.987 1.0522-4.43 2.8244v14.6203h-8.6949v-24.921h8.6949v2.2152c1.218-1.6614 3.156-2.769 5.648-2.769 1.108 0 1.994.2215 2.382.443zm26.769 12.5713c0 7.6978-5.15 13.0145-12.737 13.0145-7.532 0-12.738-5.3167-12.738-13.0145s5.206-13.0143 12.738-13.0143c7.587 0 12.737 5.3165 12.737 13.0143zm-8.528 0c0-3.4336-1.496-5.8703-4.209-5.8703-2.659 0-4.154 2.4367-4.154 5.8703s1.495 5.8149 4.154 5.8149c2.713 0 4.209-2.3813 4.209-5.8149zm10.352 0c0-7.6978 5.095-13.0143 12.571-13.0143 6.701 0 10.855 3.9874 11.574 9.8023h-8.417c-.222-1.4953-1.385-2.6029-3.157-2.6029-2.437 0-3.987 2.2706-3.987 5.8149s1.55 5.7595 3.987 5.7595c1.772 0 2.935-1.0522 3.157-2.5475h8.417c-.719 5.7596-4.873 9.8025-11.574 9.8025-7.476 0-12.571-5.3167-12.571-13.0145zm42.013 3.7658h8.03c-.886 5.7597-5.206 9.2487-11.685 9.2487-7.643 0-12.682-5.2613-12.682-13.0145 0-7.6978 5.316-13.0143 12.516-13.0143 7.642 0 11.962 5.095 11.962 12.5159v2.1598h-16.116c.277 2.9905 1.828 4.5965 4.32 4.5965 1.772 0 3.156-.7753 3.655-2.4921zm-3.821-10.0237c-2.049 0-3.434 1.2737-3.988 3.5997h7.532c-.111-2.0491-1.385-3.5997-3.544-3.5997zm13.428 11.0206h8.473c.387 1.3845 1.606 2.1598 3.156 2.1598 1.44 0 2.548-.5538 2.548-1.7168 0-.9414-.72-1.2737-1.938-1.5506l-4.874-.9969c-4.153-.886-6.867-2.8797-6.867-7.2547 0-5.3165 4.763-8.4178 10.633-8.4178 6.812 0 10.522 3.1567 11.297 8.0855h-8.03c-.277-1.0522-1.052-1.9937-3.046-1.9937-1.273 0-2.326.5538-2.326 1.6614 0 .7753.554 1.163 1.717 1.3845l4.929 1.163c4.541 1.0522 6.978 3.4335 6.978 7.4763 0 5.3168-4.818 8.2518-10.91 8.2518-6.369 0-10.965-2.88-11.74-8.2518zm24.269 0h8.474c.387 1.3845 1.606 2.1598 3.156 2.1598 1.44 0 2.548-.5538 2.548-1.7168 0-.9414-.72-1.2737-1.939-1.5506l-4.873-.9969c-4.154-.886-6.867-2.8797-6.867-7.2547 0-5.3165 4.763-8.4178 10.633-8.4178 6.812 0 10.522 3.1567 11.297 8.0855h-8.03c-.277-1.0522-1.052-1.9937-3.046-1.9937-1.273 0-2.326.5538-2.326 1.6614 0 .7753.554 1.163 1.717 1.3845l4.929 1.163c4.541 1.0522 6.978 3.4335 6.978 7.4763 0 5.3168-4.818 8.2518-10.91 8.2518-6.369 0-10.965-2.88-11.741-8.2518zm47.918 7.6978h-8.363v-1.274c-.831.831-3.323 1.717-5.981 1.717-4.929 0-9.082-2.769-9.082-8.0301 0-4.818 4.153-7.9193 9.581-7.9193 2.049 0 4.485.6646 5.482 1.3845v-1.606c0-1.606-.941-2.9905-3.046-2.9905-1.606 0-2.547.7199-2.935 1.8275h-8.196c.72-4.8181 4.984-8.6393 11.408-8.6393 7.089 0 11.132 3.7659 11.132 10.2453zm-8.363-6.9779v-1.4399c-.554-1.0522-2.049-1.7167-3.655-1.7167-1.717 0-3.434.7199-3.434 2.3813 0 1.7168 1.717 2.4367 3.434 2.4367 1.606 0 3.101-.6645 3.655-1.6614zm20.742 4.9839v1.994h-8.695v-35.997h8.695v13.0697c1.163-1.3291 3.6-2.5475 6.147-2.5475 7.2 0 11.132 5.8149 11.132 13.0143s-3.932 13.0145-11.132 13.0145c-2.547 0-4.984-1.219-6.147-2.548zm0-13.7893v6.5902c.665 1.3845 2.105 2.326 3.821 2.326 2.991 0 4.763-2.3814 4.763-5.5934s-1.772-5.6488-4.763-5.6488c-1.661 0-3.156.9969-3.821 2.326zm28.759-20.2137v35.997h-8.695v-35.997zm19.172 27.3023h8.03c-.886 5.7597-5.206 9.2487-11.685 9.2487-7.643 0-12.682-5.2613-12.682-13.0145 0-7.6978 5.316-13.0143 12.515-13.0143 7.643 0 11.962 5.095 11.962 12.5159v2.1598h-16.115c.277 2.9905 1.827 4.5965 4.32 4.5965 1.772 0 3.156-.7753 3.655-2.4921zm-3.822-10.0237c-2.049 0-3.433 1.2737-3.987 3.5997h7.532c-.111-2.0491-1.385-3.5997-3.545-3.5997zm25.461-15.2849h24.311v7.6424h-15.561v5.3165h14.232v7.4763h-14.232v5.8703h15.561v7.6978h-24.311zm27.942 34.0033v-24.921h8.694v2.1598c1.385-1.5506 3.822-2.7136 6.701-2.7136 5.538 0 8.806 3.5997 8.806 9.1377v16.3371h-8.639v-14.2327c0-2.049-1.053-3.5443-3.268-3.5443-1.717 0-3.157.9969-3.6 2.7136v15.0634zm29.991-8.5839v-9.5807h-3.655v-6.7564h3.655v-6.8671h8.584v6.8671h5.206v6.7564h-5.206v8.307c0 1.9383.941 2.769 2.658 2.769.942 0 1.994-.2216 2.769-.5538v7.3654c-.997.443-2.88.775-4.818.775-5.87 0-9.193-2.769-9.193-9.0819zm26.161-16.3371v24.921h-8.694v-24.921zm.61-6.7564c0 2.8244-2.271 4.652-4.929 4.652s-4.929-1.8276-4.929-4.652c0-2.8797 2.271-4.7073 4.929-4.7073s4.929 1.8276 4.929 4.7073zm5.382 23.0935v-9.5807h-3.655v-6.7564h3.655v-6.8671h8.584v6.8671h5.206v6.7564h-5.206v8.307c0 1.9383.941 2.769 2.658 2.769.941 0 1.994-.2216 2.769-.5538v7.3654c-.997.443-2.88.775-4.818.775-5.87 0-9.193-2.769-9.193-9.0819zm29.22 17.3889h-8.584l3.655-9.414-9.303-24.312h9.026l4.763 14.1773 4.652-14.1773h8.639z" fill="#d30001"/></svg>
|
106
106
|
</header>
|
107
107
|
<article>
|
108
|
-
<p><strong>The change you wanted was rejected.</strong> Maybe you tried to change something you didn
|
108
|
+
<p><strong>The change you wanted was rejected.</strong> Maybe you tried to change something you didn't have access to. If you're the application owner check the logs for more information.</p>
|
109
109
|
</article>
|
110
110
|
</main>
|
111
111
|
|