itsi 0.1.11 → 0.1.12
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/Cargo.lock +1535 -45
- data/{sandbox/itsi_itsi_file/Itsi.rb → Itsi.rb} +19 -13
- data/Rakefile +8 -7
- data/crates/itsi_error/src/lib.rs +9 -0
- data/crates/itsi_rb_helpers/Cargo.toml +1 -0
- data/crates/itsi_rb_helpers/src/heap_value.rs +18 -0
- data/crates/itsi_rb_helpers/src/lib.rs +34 -7
- data/crates/itsi_server/Cargo.toml +69 -30
- data/crates/itsi_server/src/lib.rs +79 -147
- data/crates/itsi_server/src/{body_proxy → ruby_types/itsi_body_proxy}/big_bytes.rs +10 -5
- data/crates/itsi_server/src/{body_proxy/itsi_body_proxy.rs → ruby_types/itsi_body_proxy/mod.rs} +22 -3
- data/crates/itsi_server/src/ruby_types/itsi_grpc_request.rs +147 -0
- data/crates/itsi_server/src/ruby_types/itsi_grpc_response.rs +19 -0
- data/crates/itsi_server/src/ruby_types/itsi_grpc_stream/mod.rs +216 -0
- data/{gems/server/ext/itsi_server/src/request/itsi_request.rs → crates/itsi_server/src/ruby_types/itsi_http_request.rs} +101 -117
- data/crates/itsi_server/src/{response/itsi_response.rs → ruby_types/itsi_http_response.rs} +72 -41
- data/crates/itsi_server/src/ruby_types/itsi_server/file_watcher.rs +225 -0
- data/crates/itsi_server/src/ruby_types/itsi_server/itsi_server_config.rs +355 -0
- data/crates/itsi_server/src/ruby_types/itsi_server.rs +82 -0
- data/crates/itsi_server/src/ruby_types/mod.rs +55 -0
- data/crates/itsi_server/src/server/bind.rs +13 -5
- data/crates/itsi_server/src/server/byte_frame.rs +32 -0
- data/crates/itsi_server/src/server/cache_store.rs +74 -0
- data/crates/itsi_server/src/server/itsi_service.rs +172 -0
- data/crates/itsi_server/src/server/lifecycle_event.rs +3 -0
- data/crates/itsi_server/src/server/listener.rs +102 -2
- data/crates/itsi_server/src/server/middleware_stack/middleware.rs +153 -0
- data/crates/itsi_server/src/server/middleware_stack/middlewares/allow_list.rs +47 -0
- data/crates/itsi_server/src/server/middleware_stack/middlewares/auth_api_key.rs +58 -0
- data/crates/itsi_server/src/server/middleware_stack/middlewares/auth_basic.rs +82 -0
- data/crates/itsi_server/src/server/middleware_stack/middlewares/auth_jwt.rs +321 -0
- data/crates/itsi_server/src/server/middleware_stack/middlewares/cache_control.rs +139 -0
- data/crates/itsi_server/src/server/middleware_stack/middlewares/compression.rs +300 -0
- data/crates/itsi_server/src/server/middleware_stack/middlewares/cors.rs +287 -0
- data/crates/itsi_server/src/server/middleware_stack/middlewares/deny_list.rs +48 -0
- data/crates/itsi_server/src/server/middleware_stack/middlewares/error_response.rs +127 -0
- data/crates/itsi_server/src/server/middleware_stack/middlewares/etag.rs +191 -0
- data/crates/itsi_server/src/server/middleware_stack/middlewares/grpc_service.rs +72 -0
- data/crates/itsi_server/src/server/middleware_stack/middlewares/header_interpretation.rs +85 -0
- data/crates/itsi_server/src/server/middleware_stack/middlewares/intrusion_protection.rs +195 -0
- data/crates/itsi_server/src/server/middleware_stack/middlewares/log_requests.rs +82 -0
- data/crates/itsi_server/src/server/middleware_stack/middlewares/mod.rs +82 -0
- data/crates/itsi_server/src/server/middleware_stack/middlewares/proxy.rs +216 -0
- data/crates/itsi_server/src/server/middleware_stack/middlewares/rate_limit.rs +124 -0
- data/crates/itsi_server/src/server/middleware_stack/middlewares/redirect.rs +76 -0
- data/crates/itsi_server/src/server/middleware_stack/middlewares/request_headers.rs +43 -0
- data/crates/itsi_server/src/server/middleware_stack/middlewares/response_headers.rs +34 -0
- data/crates/itsi_server/src/server/middleware_stack/middlewares/ruby_app.rs +93 -0
- data/crates/itsi_server/src/server/middleware_stack/middlewares/static_assets.rs +162 -0
- data/crates/itsi_server/src/server/middleware_stack/middlewares/string_rewrite.rs +158 -0
- data/crates/itsi_server/src/server/middleware_stack/middlewares/token_source.rs +12 -0
- data/crates/itsi_server/src/server/middleware_stack/mod.rs +315 -0
- data/crates/itsi_server/src/server/mod.rs +8 -1
- data/crates/itsi_server/src/server/process_worker.rs +38 -12
- data/crates/itsi_server/src/server/rate_limiter.rs +565 -0
- data/crates/itsi_server/src/server/request_job.rs +11 -0
- data/crates/itsi_server/src/server/serve_strategy/cluster_mode.rs +119 -42
- data/crates/itsi_server/src/server/serve_strategy/mod.rs +9 -6
- data/crates/itsi_server/src/server/serve_strategy/single_mode.rs +256 -111
- data/crates/itsi_server/src/server/signal.rs +19 -0
- data/crates/itsi_server/src/server/static_file_server.rs +984 -0
- data/crates/itsi_server/src/server/thread_worker.rs +139 -94
- data/crates/itsi_server/src/server/types.rs +43 -0
- data/crates/itsi_server/test.md +14 -0
- data/crates/itsi_tracing/Cargo.toml +1 -0
- data/crates/itsi_tracing/src/lib.rs +216 -45
- data/docs/.gitignore +7 -0
- data/docs/.gitpod.yml +15 -0
- data/docs/Itsi.rb +17 -0
- data/docs/content/_index.md +17 -0
- data/docs/content/about.md +6 -0
- data/docs/content/docs/_index.md +18 -0
- data/docs/content/docs/first-page.md +9 -0
- data/docs/content/docs/folder/_index.md +10 -0
- data/docs/content/docs/folder/leaf.md +7 -0
- data/docs/go.mod +5 -0
- data/docs/go.sum +2 -0
- data/docs/hugo.yaml +77 -0
- data/examples/static_assets_example.rb +83 -0
- data/gems/_index.md +18 -0
- data/gems/scheduler/CODE_OF_CONDUCT.md +7 -0
- data/gems/scheduler/Cargo.lock +75 -14
- data/gems/scheduler/README.md +5 -0
- data/gems/scheduler/_index.md +7 -0
- data/gems/scheduler/itsi-scheduler.gemspec +4 -1
- data/gems/scheduler/lib/itsi/scheduler/version.rb +1 -1
- data/gems/scheduler/lib/itsi/scheduler.rb +2 -2
- data/gems/scheduler/test/test_file_io.rb +0 -1
- data/gems/scheduler/test/test_itsi_scheduler.rb +1 -1
- data/gems/server/CHANGELOG.md +5 -0
- data/gems/server/CODE_OF_CONDUCT.md +7 -0
- data/gems/server/Cargo.lock +1536 -45
- data/gems/server/README.md +4 -0
- data/gems/server/_index.md +6 -0
- data/gems/server/exe/itsi +33 -74
- data/gems/server/itsi-server.gemspec +3 -2
- data/gems/server/lib/itsi/{request.rb → http_request.rb} +29 -5
- data/gems/server/lib/itsi/http_response.rb +39 -0
- data/gems/server/lib/itsi/server/Itsi.rb +11 -19
- data/gems/server/lib/itsi/server/config/dsl.rb +506 -0
- data/gems/server/lib/itsi/server/config.rb +103 -8
- data/gems/server/lib/itsi/server/default_app/default_app.rb +38 -0
- data/gems/server/lib/itsi/server/grpc_interface.rb +213 -0
- data/gems/server/lib/itsi/server/rack/handler/itsi.rb +8 -17
- data/gems/server/lib/itsi/server/rack_interface.rb +23 -4
- data/gems/server/lib/itsi/server/scheduler_interface.rb +1 -1
- data/gems/server/lib/itsi/server/scheduler_mode.rb +4 -0
- data/gems/server/lib/itsi/server/signal_trap.rb +7 -1
- data/gems/server/lib/itsi/server/version.rb +1 -1
- data/gems/server/lib/itsi/server.rb +74 -63
- data/gems/server/lib/itsi/standard_headers.rb +86 -0
- data/gems/server/test/helpers/test_helper.rb +12 -12
- data/gems/server/test/test_itsi_server.rb +2 -2
- data/lib/itsi/version.rb +1 -1
- data/sandbox/itsi_file/Gemfile +11 -0
- data/sandbox/itsi_file/Gemfile.lock +69 -0
- data/sandbox/itsi_file/Itsi.rb +276 -0
- data/sandbox/itsi_file/error.html +2 -0
- data/sandbox/itsi_file/organisations_controller.rb +20 -0
- data/sandbox/itsi_file/public/assets/image.png +0 -0
- data/sandbox/itsi_file/public/assets/index.html +1 -0
- data/sandbox/itsi_sandbox_hanami/Gemfile.lock +2 -2
- data/sandbox/itsi_sandbox_rack/Gemfile.lock +2 -2
- data/sandbox/itsi_sandbox_rack/config.ru +2 -15
- data/sandbox/itsi_sandbox_rails/.dockerignore +2 -5
- data/sandbox/itsi_sandbox_rails/.github/workflows/ci.yml +1 -1
- data/sandbox/itsi_sandbox_rails/.gitignore +2 -1
- data/sandbox/itsi_sandbox_rails/Dockerfile +6 -9
- data/sandbox/itsi_sandbox_rails/Gemfile +16 -22
- data/sandbox/itsi_sandbox_rails/Gemfile.lock +100 -225
- data/sandbox/itsi_sandbox_rails/app/assets/config/manifest.js +4 -0
- data/sandbox/itsi_sandbox_rails/app/assets/stylesheets/application.css +11 -6
- data/sandbox/itsi_sandbox_rails/app/channels/application_cable/channel.rb +4 -0
- data/sandbox/itsi_sandbox_rails/app/channels/application_cable/connection.rb +4 -0
- data/sandbox/itsi_sandbox_rails/app/controllers/live_controller.rb +7 -8
- data/sandbox/itsi_sandbox_rails/app/controllers/uploads_controller.rb +0 -3
- data/sandbox/itsi_sandbox_rails/app/views/layouts/application.html.erb +2 -7
- data/sandbox/itsi_sandbox_rails/bin/docker-entrypoint +3 -4
- data/sandbox/itsi_sandbox_rails/bin/setup +8 -5
- data/sandbox/itsi_sandbox_rails/config/application.rb +1 -35
- data/sandbox/itsi_sandbox_rails/config/cable.yml +3 -10
- data/sandbox/itsi_sandbox_rails/config/credentials.yml.enc +1 -1
- data/sandbox/itsi_sandbox_rails/config/database.yml +9 -19
- data/sandbox/itsi_sandbox_rails/config/environment.rb +1 -1
- data/sandbox/itsi_sandbox_rails/config/environments/development.rb +21 -12
- data/sandbox/itsi_sandbox_rails/config/environments/production.rb +49 -34
- data/sandbox/itsi_sandbox_rails/config/environments/test.rb +19 -5
- data/sandbox/itsi_sandbox_rails/config/initializers/assets.rb +5 -0
- data/sandbox/itsi_sandbox_rails/config/initializers/filter_parameter_logging.rb +1 -1
- data/sandbox/itsi_sandbox_rails/config/initializers/permissions_policy.rb +13 -0
- data/sandbox/itsi_sandbox_rails/config/puma.rb +2 -9
- data/sandbox/itsi_sandbox_rails/config.ru +0 -1
- data/sandbox/itsi_sandbox_rails/db/migrate/20250301041554_create_posts.rb +1 -1
- data/sandbox/itsi_sandbox_rails/db/schema.rb +2 -2
- data/sandbox/itsi_sandbox_rails/lib/assets/.keep +0 -0
- data/sandbox/itsi_sandbox_rails/public/404.html +66 -113
- data/sandbox/itsi_sandbox_rails/public/406-unsupported-browser.html +65 -113
- data/sandbox/itsi_sandbox_rails/public/422.html +66 -113
- data/sandbox/itsi_sandbox_rails/public/500.html +65 -113
- data/sandbox/itsi_sandbox_rails/public/icon.png +0 -0
- data/sandbox/itsi_sandbox_rails/public/icon.svg +2 -2
- data/sandbox/itsi_sandbox_rails/test/channels/application_cable/connection_test.rb +13 -0
- data/sandbox/itsi_sandbox_roda/Gemfile.lock +3 -10
- data/tasks.txt +72 -35
- metadata +89 -139
- data/crates/itsi_server/src/body_proxy/mod.rs +0 -2
- data/crates/itsi_server/src/request/itsi_request.rs +0 -298
- data/crates/itsi_server/src/request/mod.rs +0 -1
- data/crates/itsi_server/src/response/mod.rs +0 -1
- data/crates/itsi_server/src/server/itsi_server.rs +0 -288
- data/gems/scheduler/ext/itsi_error/Cargo.lock +0 -368
- data/gems/scheduler/ext/itsi_error/Cargo.toml +0 -11
- data/gems/scheduler/ext/itsi_error/src/from.rs +0 -68
- data/gems/scheduler/ext/itsi_error/src/lib.rs +0 -24
- data/gems/scheduler/ext/itsi_instrument_entry/Cargo.toml +0 -15
- data/gems/scheduler/ext/itsi_instrument_entry/src/lib.rs +0 -31
- data/gems/scheduler/ext/itsi_rb_helpers/Cargo.lock +0 -355
- data/gems/scheduler/ext/itsi_rb_helpers/Cargo.toml +0 -10
- data/gems/scheduler/ext/itsi_rb_helpers/src/heap_value.rs +0 -121
- data/gems/scheduler/ext/itsi_rb_helpers/src/lib.rs +0 -201
- data/gems/scheduler/ext/itsi_scheduler/Cargo.toml +0 -24
- data/gems/scheduler/ext/itsi_scheduler/extconf.rb +0 -6
- data/gems/scheduler/ext/itsi_scheduler/src/itsi_scheduler/io_helpers.rs +0 -56
- data/gems/scheduler/ext/itsi_scheduler/src/itsi_scheduler/io_waiter.rs +0 -44
- data/gems/scheduler/ext/itsi_scheduler/src/itsi_scheduler/timer.rs +0 -44
- data/gems/scheduler/ext/itsi_scheduler/src/itsi_scheduler.rs +0 -308
- data/gems/scheduler/ext/itsi_scheduler/src/lib.rs +0 -38
- data/gems/scheduler/ext/itsi_server/Cargo.lock +0 -2956
- data/gems/scheduler/ext/itsi_server/Cargo.toml +0 -50
- data/gems/scheduler/ext/itsi_server/extconf.rb +0 -6
- data/gems/scheduler/ext/itsi_server/src/body_proxy/big_bytes.rs +0 -104
- data/gems/scheduler/ext/itsi_server/src/body_proxy/itsi_body_proxy.rs +0 -122
- data/gems/scheduler/ext/itsi_server/src/body_proxy/mod.rs +0 -2
- data/gems/scheduler/ext/itsi_server/src/env.rs +0 -43
- data/gems/scheduler/ext/itsi_server/src/lib.rs +0 -180
- data/gems/scheduler/ext/itsi_server/src/request/itsi_request.rs +0 -298
- data/gems/scheduler/ext/itsi_server/src/request/mod.rs +0 -1
- data/gems/scheduler/ext/itsi_server/src/response/itsi_response.rs +0 -357
- data/gems/scheduler/ext/itsi_server/src/response/mod.rs +0 -1
- data/gems/scheduler/ext/itsi_server/src/server/bind.rs +0 -174
- data/gems/scheduler/ext/itsi_server/src/server/bind_protocol.rs +0 -37
- data/gems/scheduler/ext/itsi_server/src/server/io_stream.rs +0 -104
- data/gems/scheduler/ext/itsi_server/src/server/itsi_server.rs +0 -288
- data/gems/scheduler/ext/itsi_server/src/server/lifecycle_event.rs +0 -9
- data/gems/scheduler/ext/itsi_server/src/server/listener.rs +0 -318
- data/gems/scheduler/ext/itsi_server/src/server/mod.rs +0 -11
- data/gems/scheduler/ext/itsi_server/src/server/process_worker.rs +0 -203
- data/gems/scheduler/ext/itsi_server/src/server/serve_strategy/cluster_mode.rs +0 -260
- data/gems/scheduler/ext/itsi_server/src/server/serve_strategy/mod.rs +0 -27
- data/gems/scheduler/ext/itsi_server/src/server/serve_strategy/single_mode.rs +0 -276
- data/gems/scheduler/ext/itsi_server/src/server/signal.rs +0 -74
- data/gems/scheduler/ext/itsi_server/src/server/thread_worker.rs +0 -399
- data/gems/scheduler/ext/itsi_server/src/server/tls/locked_dir_cache.rs +0 -132
- data/gems/scheduler/ext/itsi_server/src/server/tls.rs +0 -265
- data/gems/scheduler/ext/itsi_tracing/Cargo.lock +0 -274
- data/gems/scheduler/ext/itsi_tracing/Cargo.toml +0 -16
- data/gems/scheduler/ext/itsi_tracing/src/lib.rs +0 -58
- data/gems/server/ext/itsi_error/Cargo.lock +0 -368
- data/gems/server/ext/itsi_error/Cargo.toml +0 -11
- data/gems/server/ext/itsi_error/src/from.rs +0 -68
- data/gems/server/ext/itsi_error/src/lib.rs +0 -24
- data/gems/server/ext/itsi_instrument_entry/Cargo.toml +0 -15
- data/gems/server/ext/itsi_instrument_entry/src/lib.rs +0 -31
- data/gems/server/ext/itsi_rb_helpers/Cargo.lock +0 -355
- data/gems/server/ext/itsi_rb_helpers/Cargo.toml +0 -10
- data/gems/server/ext/itsi_rb_helpers/src/heap_value.rs +0 -121
- data/gems/server/ext/itsi_rb_helpers/src/lib.rs +0 -201
- data/gems/server/ext/itsi_scheduler/Cargo.toml +0 -24
- data/gems/server/ext/itsi_scheduler/extconf.rb +0 -6
- data/gems/server/ext/itsi_scheduler/src/itsi_scheduler/io_helpers.rs +0 -56
- data/gems/server/ext/itsi_scheduler/src/itsi_scheduler/io_waiter.rs +0 -44
- data/gems/server/ext/itsi_scheduler/src/itsi_scheduler/timer.rs +0 -44
- data/gems/server/ext/itsi_scheduler/src/itsi_scheduler.rs +0 -308
- data/gems/server/ext/itsi_scheduler/src/lib.rs +0 -38
- data/gems/server/ext/itsi_server/Cargo.lock +0 -2956
- data/gems/server/ext/itsi_server/Cargo.toml +0 -50
- data/gems/server/ext/itsi_server/extconf.rb +0 -6
- data/gems/server/ext/itsi_server/src/body_proxy/big_bytes.rs +0 -104
- data/gems/server/ext/itsi_server/src/body_proxy/itsi_body_proxy.rs +0 -122
- data/gems/server/ext/itsi_server/src/body_proxy/mod.rs +0 -2
- data/gems/server/ext/itsi_server/src/env.rs +0 -43
- data/gems/server/ext/itsi_server/src/lib.rs +0 -180
- data/gems/server/ext/itsi_server/src/request/mod.rs +0 -1
- data/gems/server/ext/itsi_server/src/response/itsi_response.rs +0 -357
- data/gems/server/ext/itsi_server/src/response/mod.rs +0 -1
- data/gems/server/ext/itsi_server/src/server/bind.rs +0 -174
- data/gems/server/ext/itsi_server/src/server/bind_protocol.rs +0 -37
- data/gems/server/ext/itsi_server/src/server/io_stream.rs +0 -104
- data/gems/server/ext/itsi_server/src/server/itsi_server.rs +0 -288
- data/gems/server/ext/itsi_server/src/server/lifecycle_event.rs +0 -9
- data/gems/server/ext/itsi_server/src/server/listener.rs +0 -318
- data/gems/server/ext/itsi_server/src/server/mod.rs +0 -11
- data/gems/server/ext/itsi_server/src/server/process_worker.rs +0 -203
- data/gems/server/ext/itsi_server/src/server/serve_strategy/cluster_mode.rs +0 -260
- data/gems/server/ext/itsi_server/src/server/serve_strategy/mod.rs +0 -27
- data/gems/server/ext/itsi_server/src/server/serve_strategy/single_mode.rs +0 -276
- data/gems/server/ext/itsi_server/src/server/signal.rs +0 -74
- data/gems/server/ext/itsi_server/src/server/thread_worker.rs +0 -399
- data/gems/server/ext/itsi_server/src/server/tls/locked_dir_cache.rs +0 -132
- data/gems/server/ext/itsi_server/src/server/tls.rs +0 -265
- data/gems/server/ext/itsi_tracing/Cargo.lock +0 -274
- data/gems/server/ext/itsi_tracing/Cargo.toml +0 -16
- data/gems/server/ext/itsi_tracing/src/lib.rs +0 -58
- data/gems/server/lib/itsi/server/options_dsl.rb +0 -401
- data/gems/server/lib/itsi/stream_io.rb +0 -38
- data/location_dsl.rb +0 -381
- data/sandbox/itsi_sandbox_rails/.kamal/hooks/docker-setup.sample +0 -3
- data/sandbox/itsi_sandbox_rails/.kamal/hooks/post-app-boot.sample +0 -3
- data/sandbox/itsi_sandbox_rails/.kamal/hooks/post-deploy.sample +0 -14
- data/sandbox/itsi_sandbox_rails/.kamal/hooks/post-proxy-reboot.sample +0 -3
- data/sandbox/itsi_sandbox_rails/.kamal/hooks/pre-app-boot.sample +0 -3
- data/sandbox/itsi_sandbox_rails/.kamal/hooks/pre-build.sample +0 -51
- data/sandbox/itsi_sandbox_rails/.kamal/hooks/pre-connect.sample +0 -47
- data/sandbox/itsi_sandbox_rails/.kamal/hooks/pre-deploy.sample +0 -109
- data/sandbox/itsi_sandbox_rails/.kamal/hooks/pre-proxy-reboot.sample +0 -3
- data/sandbox/itsi_sandbox_rails/.kamal/secrets +0 -17
- data/sandbox/itsi_sandbox_rails/bin/dev +0 -2
- data/sandbox/itsi_sandbox_rails/bin/jobs +0 -6
- data/sandbox/itsi_sandbox_rails/bin/kamal +0 -27
- data/sandbox/itsi_sandbox_rails/bin/thrust +0 -5
- data/sandbox/itsi_sandbox_rails/config/cache.yml +0 -16
- data/sandbox/itsi_sandbox_rails/config/deploy.yml +0 -116
- data/sandbox/itsi_sandbox_rails/config/queue.yml +0 -18
- data/sandbox/itsi_sandbox_rails/config/recurring.yml +0 -10
- data/sandbox/itsi_sandbox_rails/db/cable_schema.rb +0 -11
- data/sandbox/itsi_sandbox_rails/db/cache_schema.rb +0 -14
- data/sandbox/itsi_sandbox_rails/db/queue_schema.rb +0 -129
- data/sandbox/itsi_sandbox_rails/public/400.html +0 -114
- data/sandbox/itsi_sandbox_rails/test/fixtures/posts.yml +0 -9
- data/sandbox/itsi_sandbox_rails/test/models/post_test.rb +0 -7
- /data/{sandbox/itsi_sandbox_rails/script/.keep → crates/_index.md} +0 -0
- /data/gems/server/lib/itsi/{index.html → server/default_app/index.html} +0 -0
@@ -2,6 +2,7 @@
|
|
2
2
|
require "fileutils"
|
3
3
|
|
4
4
|
APP_ROOT = File.expand_path("..", __dir__)
|
5
|
+
APP_NAME = "itsi-sandbox-rails"
|
5
6
|
|
6
7
|
def system!(*args)
|
7
8
|
system(*args, exception: true)
|
@@ -13,6 +14,7 @@ FileUtils.chdir APP_ROOT do
|
|
13
14
|
# Add necessary setup steps to this file.
|
14
15
|
|
15
16
|
puts "== Installing dependencies =="
|
17
|
+
system! "gem install bundler --conservative"
|
16
18
|
system("bundle check") || system!("bundle install")
|
17
19
|
|
18
20
|
# puts "\n== Copying sample files =="
|
@@ -26,9 +28,10 @@ FileUtils.chdir APP_ROOT do
|
|
26
28
|
puts "\n== Removing old logs and tempfiles =="
|
27
29
|
system! "bin/rails log:clear tmp:clear"
|
28
30
|
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
31
|
+
puts "\n== Restarting application server =="
|
32
|
+
system! "bin/rails restart"
|
33
|
+
|
34
|
+
# puts "\n== Configuring puma-dev =="
|
35
|
+
# system "ln -nfs #{APP_ROOT} ~/.puma-dev/#{APP_NAME}"
|
36
|
+
# system "curl -Is https://#{APP_NAME}.test/up | head -n 1"
|
34
37
|
end
|
@@ -9,47 +9,13 @@ Bundler.require(*Rails.groups)
|
|
9
9
|
module ItsiSandboxRails
|
10
10
|
class Application < Rails::Application
|
11
11
|
# Initialize configuration defaults for originally generated Rails version.
|
12
|
-
config.load_defaults
|
12
|
+
config.load_defaults 7.2
|
13
13
|
|
14
14
|
# Please, add to the `ignore` list any other `lib` subdirectories that do
|
15
15
|
# not contain `.rb` files, or that should not be reloaded or eager loaded.
|
16
16
|
# Common ones are `templates`, `generators`, or `middleware`, for example.
|
17
17
|
config.autoload_lib(ignore: %w[assets tasks])
|
18
18
|
|
19
|
-
# Test impact of certain middleware combinations on performance
|
20
|
-
# here.
|
21
|
-
[
|
22
|
-
# ActionDispatch::HostAuthorization,
|
23
|
-
# Rack::Sendfile,
|
24
|
-
# ActionDispatch::Static,
|
25
|
-
# ActionDispatch::Executor,
|
26
|
-
# ActionDispatch::ServerTiming,
|
27
|
-
# Rack::Runtime,
|
28
|
-
# Rack::MethodOverride,
|
29
|
-
# ActionDispatch::RequestId,
|
30
|
-
# ActionDispatch::RemoteIp,
|
31
|
-
# Rails::Rack::Logger,
|
32
|
-
# ActionDispatch::ShowExceptions,
|
33
|
-
# ActionDispatch::DebugExceptions,
|
34
|
-
# ActionDispatch::ActionableExceptions,
|
35
|
-
# ActionDispatch::Reloader,
|
36
|
-
# ActionDispatch::Callbacks,
|
37
|
-
# ActiveRecord::Migration::CheckPending,
|
38
|
-
# ActionDispatch::Cookies,
|
39
|
-
# ActionDispatch::Session::CookieStore,
|
40
|
-
# ActionDispatch::Flash,
|
41
|
-
# ActionDispatch::ContentSecurityPolicy::Middleware,
|
42
|
-
# ActionDispatch::PermissionsPolicy::Middleware,
|
43
|
-
# Rack::Head,
|
44
|
-
# Rack::ConditionalGet,
|
45
|
-
# Rack::ETag,
|
46
|
-
# Rack::TempfileReaper
|
47
|
-
].each do |mw|
|
48
|
-
config.middleware.delete(mw)
|
49
|
-
end
|
50
|
-
|
51
|
-
|
52
|
-
|
53
19
|
# Configuration for the application, engines, and railties goes here.
|
54
20
|
#
|
55
21
|
# These settings can be overridden in specific environments using the files
|
@@ -1,7 +1,3 @@
|
|
1
|
-
# Async adapter only works within the same process, so for manually triggering cable updates from a console,
|
2
|
-
# and seeing results in the browser, you must do so from the web console (running inside the dev process),
|
3
|
-
# not a terminal started via bin/rails console! Add "console" to any action or any ERB template view
|
4
|
-
# to make the web console appear.
|
5
1
|
development:
|
6
2
|
adapter: async
|
7
3
|
|
@@ -9,9 +5,6 @@ test:
|
|
9
5
|
adapter: test
|
10
6
|
|
11
7
|
production:
|
12
|
-
adapter:
|
13
|
-
|
14
|
-
|
15
|
-
writing: cable
|
16
|
-
polling_interval: 0.1.seconds
|
17
|
-
message_retention: 1.day
|
8
|
+
adapter: redis
|
9
|
+
url: <%= ENV.fetch("REDIS_URL") { "redis://localhost:6379/1" } %>
|
10
|
+
channel_prefix: itsi_sandbox_rails_production
|
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
jCIvbRX+tvrgrMnp21/H7Q+QpgkP9wLNowgqjoA0muXSsZ2eT7UHieGmK2bSjebQGqzWsqJguWdRbdtAJ1IEN/+m/ZlkvAYA1BfZyyu9UjBXYyFJTIWo5sXZKsRVYep2CnoLJOMr0bbzXa6QS4i7sI1dzIUYSC33Z63xNX0Oo/8Ww+hfkt9qJcf1EFZ/VyMjvAG4uKBRshuADQDBOywyDFLxduewR75LhSL3okTVPqMiBODckFxNW6ZDSATY50ISoJcSHAGcO4hfi7Jizm9XsDvGlH7ugkgCrHYr8iBy9gjnb35ftHODu6YBLeu2sTmHxfxo4eHuc7l6TB68B7yu8DsB0bYg284zRYKm/9fkKAg8LZ/57epvq8ac0tfzHGNXPfzpqdYCrkxaknPdxmWVB2qn4rtF--2pb2jCnBZP2MWkro--3HUjoEXPsUGfO4flB69itw==
|
@@ -8,33 +8,23 @@ default: &default
|
|
8
8
|
adapter: postgresql
|
9
9
|
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
|
10
10
|
timeout: 5000
|
11
|
+
database: itsi_sandbox_rails
|
11
12
|
|
12
13
|
development:
|
13
14
|
<<: *default
|
14
|
-
database: itsi_sandbox_development
|
15
15
|
|
16
16
|
# Warning: The database defined as "test" will be erased and
|
17
17
|
# re-generated from your development database when you run "rake".
|
18
18
|
# Do not set this db to the same as development or production.
|
19
19
|
test:
|
20
20
|
<<: *default
|
21
|
-
database: itsi_sandbox_test
|
22
21
|
|
23
|
-
#
|
24
|
-
#
|
22
|
+
# SQLite3 write its data on the local filesystem, as such it requires
|
23
|
+
# persistent disks. If you are deploying to a managed service, you should
|
24
|
+
# make sure it provides disk persistence, as many don't.
|
25
|
+
#
|
26
|
+
# Similarly, if you deploy your application as a Docker container, you must
|
27
|
+
# ensure the database is located in a persisted volume.
|
25
28
|
production:
|
26
|
-
|
27
|
-
|
28
|
-
database: itsi_sandbox_rails_production
|
29
|
-
cache:
|
30
|
-
<<: *default
|
31
|
-
database: itsi_sandbox_rails_production_cache
|
32
|
-
migrations_paths: db/cache_migrate
|
33
|
-
queue:
|
34
|
-
<<: *default
|
35
|
-
database: itsi_sandbox_rails_production_queue
|
36
|
-
migrations_paths: db/queue_migrate
|
37
|
-
cable:
|
38
|
-
<<: *default
|
39
|
-
database: itsi_sandbox_rails_production_cable
|
40
|
-
migrations_paths: db/cable_migrate
|
29
|
+
<<: *default
|
30
|
+
# database: path/to/persistent/storage/production.sqlite3
|
@@ -3,7 +3,9 @@ require "active_support/core_ext/integer/time"
|
|
3
3
|
Rails.application.configure do
|
4
4
|
# Settings specified here will take precedence over those in config/application.rb.
|
5
5
|
|
6
|
-
#
|
6
|
+
# In the development environment your application's code is reloaded any time
|
7
|
+
# it changes. This slows down response time but is perfect for development
|
8
|
+
# since you don't have to restart the web server when you make code changes.
|
7
9
|
config.enable_reloading = true
|
8
10
|
|
9
11
|
# Do not eager load code on boot.
|
@@ -15,18 +17,19 @@ Rails.application.configure do
|
|
15
17
|
# Enable server timing.
|
16
18
|
config.server_timing = true
|
17
19
|
|
18
|
-
# Enable/disable
|
19
|
-
# Run rails dev:cache to toggle
|
20
|
+
# Enable/disable caching. By default caching is disabled.
|
21
|
+
# Run rails dev:cache to toggle caching.
|
20
22
|
if Rails.root.join("tmp/caching-dev.txt").exist?
|
21
23
|
config.action_controller.perform_caching = true
|
22
24
|
config.action_controller.enable_fragment_cache_logging = true
|
23
|
-
|
25
|
+
|
26
|
+
config.cache_store = :memory_store
|
27
|
+
config.public_file_server.headers = { "Cache-Control" => "public, max-age=#{2.days.to_i}" }
|
24
28
|
else
|
25
29
|
config.action_controller.perform_caching = false
|
26
|
-
end
|
27
30
|
|
28
|
-
|
29
|
-
|
31
|
+
config.cache_store = :null_store
|
32
|
+
end
|
30
33
|
|
31
34
|
# Store uploaded files on the local file system (see config/storage.yml for options).
|
32
35
|
config.active_storage.service = :local
|
@@ -34,27 +37,33 @@ Rails.application.configure do
|
|
34
37
|
# Don't care if the mailer can't send.
|
35
38
|
config.action_mailer.raise_delivery_errors = false
|
36
39
|
|
37
|
-
#
|
40
|
+
# Disable caching for Action Mailer templates even if Action Controller
|
41
|
+
# caching is enabled.
|
38
42
|
config.action_mailer.perform_caching = false
|
39
43
|
|
40
|
-
# Set localhost to be used by links generated in mailer templates.
|
41
44
|
config.action_mailer.default_url_options = { host: "localhost", port: 3000 }
|
42
45
|
|
43
46
|
# Print deprecation notices to the Rails logger.
|
44
47
|
config.active_support.deprecation = :log
|
45
48
|
|
49
|
+
# Raise exceptions for disallowed deprecations.
|
50
|
+
config.active_support.disallowed_deprecation = :raise
|
51
|
+
|
52
|
+
# Tell Active Support which deprecation messages to disallow.
|
53
|
+
config.active_support.disallowed_deprecation_warnings = []
|
54
|
+
|
46
55
|
# Raise an error on page load if there are pending migrations.
|
47
56
|
config.active_record.migration_error = :page_load
|
48
57
|
|
49
58
|
# Highlight code that triggered database queries in logs.
|
50
59
|
config.active_record.verbose_query_logs = true
|
51
60
|
|
52
|
-
# Append comments with runtime information tags to SQL queries in logs.
|
53
|
-
config.active_record.query_log_tags_enabled = true
|
54
|
-
|
55
61
|
# Highlight code that enqueued background job in logs.
|
56
62
|
config.active_job.verbose_enqueue_logs = true
|
57
63
|
|
64
|
+
# Suppress logger output for asset requests.
|
65
|
+
config.assets.quiet = true
|
66
|
+
|
58
67
|
# Raises error for missing translations.
|
59
68
|
# config.i18n.raise_on_missing_translations = true
|
60
69
|
|
@@ -6,73 +6,89 @@ Rails.application.configure do
|
|
6
6
|
# Code is not reloaded between requests.
|
7
7
|
config.enable_reloading = false
|
8
8
|
|
9
|
-
# Eager load code on boot
|
9
|
+
# Eager load code on boot. This eager loads most of Rails and
|
10
|
+
# your application in memory, allowing both threaded web servers
|
11
|
+
# and those relying on copy on write to perform better.
|
12
|
+
# Rake tasks automatically ignore this option for performance.
|
10
13
|
config.eager_load = true
|
11
14
|
|
12
|
-
# Full error reports are disabled.
|
15
|
+
# Full error reports are disabled and caching is turned on.
|
13
16
|
config.consider_all_requests_local = false
|
14
|
-
|
15
|
-
# Turn on fragment caching in view templates.
|
16
17
|
config.action_controller.perform_caching = true
|
17
18
|
|
18
|
-
#
|
19
|
-
config.
|
19
|
+
# Ensures that a master key has been made available in ENV["RAILS_MASTER_KEY"], config/master.key, or an environment
|
20
|
+
# key such as config/credentials/production.key. This key is used to decrypt credentials (and other encrypted files).
|
21
|
+
# config.require_master_key = true
|
22
|
+
|
23
|
+
# Disable serving static files from `public/`, relying on NGINX/Apache to do so instead.
|
24
|
+
# config.public_file_server.enabled = false
|
25
|
+
|
26
|
+
# Compress CSS using a preprocessor.
|
27
|
+
# config.assets.css_compressor = :sass
|
28
|
+
|
29
|
+
# Do not fall back to assets pipeline if a precompiled asset is missed.
|
30
|
+
config.assets.compile = false
|
20
31
|
|
21
32
|
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
|
22
33
|
# config.asset_host = "http://assets.example.com"
|
23
34
|
|
35
|
+
# Specifies the header that your server uses for sending files.
|
36
|
+
# config.action_dispatch.x_sendfile_header = "X-Sendfile" # for Apache
|
37
|
+
# config.action_dispatch.x_sendfile_header = "X-Accel-Redirect" # for NGINX
|
38
|
+
|
24
39
|
# Store uploaded files on the local file system (see config/storage.yml for options).
|
25
40
|
config.active_storage.service = :local
|
26
41
|
|
42
|
+
# Mount Action Cable outside main process or domain.
|
43
|
+
# config.action_cable.mount_path = nil
|
44
|
+
# config.action_cable.url = "wss://example.com/cable"
|
45
|
+
# config.action_cable.allowed_request_origins = [ "http://example.com", /http:\/\/example.*/ ]
|
46
|
+
|
27
47
|
# Assume all access to the app is happening through a SSL-terminating reverse proxy.
|
28
|
-
config.
|
48
|
+
# Can be used together with config.force_ssl for Strict-Transport-Security and secure cookies.
|
49
|
+
# config.assume_ssl = true
|
29
50
|
|
30
51
|
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
31
|
-
config.force_ssl =
|
52
|
+
config.force_ssl = false
|
32
53
|
|
33
54
|
# Skip http-to-https redirect for the default health check endpoint.
|
34
55
|
# config.ssl_options = { redirect: { exclude: ->(request) { request.path == "/up" } } }
|
35
56
|
|
36
|
-
# Log to STDOUT
|
57
|
+
# Log to STDOUT by default
|
58
|
+
config.logger = ActiveSupport::Logger.new(STDOUT)
|
59
|
+
.tap { |logger| logger.formatter = ::Logger::Formatter.new }
|
60
|
+
.then { |logger| ActiveSupport::TaggedLogging.new(logger) }
|
61
|
+
|
62
|
+
# Prepend all log lines with the following tags.
|
37
63
|
config.log_tags = [ :request_id ]
|
38
|
-
config.logger = ActiveSupport::TaggedLogging.logger(STDOUT)
|
39
64
|
|
40
|
-
#
|
65
|
+
# "info" includes generic and useful information about system operation, but avoids logging too much
|
66
|
+
# information to avoid inadvertent exposure of personally identifiable information (PII). If you
|
67
|
+
# want to log everything, set the level to "debug".
|
41
68
|
config.log_level = ENV.fetch("RAILS_LOG_LEVEL", "info")
|
42
69
|
|
43
|
-
#
|
44
|
-
config.
|
70
|
+
# Use a different cache store in production.
|
71
|
+
# config.cache_store = :mem_cache_store
|
45
72
|
|
46
|
-
#
|
47
|
-
config.
|
48
|
-
|
49
|
-
# Replace the default in-process memory cache store with a durable alternative.
|
50
|
-
config.cache_store = :solid_cache_store
|
73
|
+
# Use a real queuing backend for Active Job (and separate queues per environment).
|
74
|
+
# config.active_job.queue_adapter = :resque
|
75
|
+
# config.active_job.queue_name_prefix = "itsi_sandbox_rails_production"
|
51
76
|
|
52
|
-
#
|
53
|
-
|
54
|
-
config.
|
77
|
+
# Disable caching for Action Mailer templates even if Action Controller
|
78
|
+
# caching is enabled.
|
79
|
+
config.action_mailer.perform_caching = false
|
55
80
|
|
56
81
|
# Ignore bad email addresses and do not raise email delivery errors.
|
57
82
|
# Set this to true and configure the email server for immediate delivery to raise delivery errors.
|
58
83
|
# config.action_mailer.raise_delivery_errors = false
|
59
84
|
|
60
|
-
# Set host to be used by links generated in mailer templates.
|
61
|
-
config.action_mailer.default_url_options = { host: "example.com" }
|
62
|
-
|
63
|
-
# Specify outgoing SMTP server. Remember to add smtp/* credentials via rails credentials:edit.
|
64
|
-
# config.action_mailer.smtp_settings = {
|
65
|
-
# user_name: Rails.application.credentials.dig(:smtp, :user_name),
|
66
|
-
# password: Rails.application.credentials.dig(:smtp, :password),
|
67
|
-
# address: "smtp.example.com",
|
68
|
-
# port: 587,
|
69
|
-
# authentication: :plain
|
70
|
-
# }
|
71
|
-
|
72
85
|
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
73
86
|
# the I18n.default_locale when a translation cannot be found).
|
74
87
|
config.i18n.fallbacks = true
|
75
88
|
|
89
|
+
# Don't log any deprecations.
|
90
|
+
config.active_support.report_deprecations = false
|
91
|
+
|
76
92
|
# Do not dump schema after migrations.
|
77
93
|
config.active_record.dump_schema_after_migration = false
|
78
94
|
|
@@ -84,7 +100,6 @@ Rails.application.configure do
|
|
84
100
|
# "example.com", # Allow requests from example.com
|
85
101
|
# /.*\.example\.com/ # Allow requests from subdomains like `www.example.com`
|
86
102
|
# ]
|
87
|
-
#
|
88
103
|
# Skip DNS rebinding protection for the default health check endpoint.
|
89
104
|
# config.host_authorization = { exclude: ->(request) { request.path == "/up" } }
|
90
105
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
require "active_support/core_ext/integer/time"
|
2
|
+
|
1
3
|
# The test environment is used exclusively to run your application's
|
2
4
|
# test suite. You never need to work with it otherwise. Remember that
|
3
5
|
# your test database is "scratch space" for the test suite and is wiped
|
@@ -15,11 +17,12 @@ Rails.application.configure do
|
|
15
17
|
# loading is working properly before deploying your code.
|
16
18
|
config.eager_load = ENV["CI"].present?
|
17
19
|
|
18
|
-
# Configure public file server for tests with
|
19
|
-
config.public_file_server.headers = { "
|
20
|
+
# Configure public file server for tests with Cache-Control for performance.
|
21
|
+
config.public_file_server.headers = { "Cache-Control" => "public, max-age=#{1.hour.to_i}" }
|
20
22
|
|
21
|
-
# Show full error reports.
|
23
|
+
# Show full error reports and disable caching.
|
22
24
|
config.consider_all_requests_local = true
|
25
|
+
config.action_controller.perform_caching = false
|
23
26
|
config.cache_store = :null_store
|
24
27
|
|
25
28
|
# Render exception templates for rescuable exceptions and raise for other exceptions.
|
@@ -31,17 +34,28 @@ Rails.application.configure do
|
|
31
34
|
# Store uploaded files on the local file system in a temporary directory.
|
32
35
|
config.active_storage.service = :test
|
33
36
|
|
37
|
+
# Disable caching for Action Mailer templates even if Action Controller
|
38
|
+
# caching is enabled.
|
39
|
+
config.action_mailer.perform_caching = false
|
40
|
+
|
34
41
|
# Tell Action Mailer not to deliver emails to the real world.
|
35
42
|
# The :test delivery method accumulates sent emails in the
|
36
43
|
# ActionMailer::Base.deliveries array.
|
37
44
|
config.action_mailer.delivery_method = :test
|
38
45
|
|
39
|
-
#
|
40
|
-
|
46
|
+
# Unlike controllers, the mailer instance doesn't have any context about the
|
47
|
+
# incoming request so you'll need to provide the :host parameter yourself.
|
48
|
+
config.action_mailer.default_url_options = { host: "www.example.com" }
|
41
49
|
|
42
50
|
# Print deprecation notices to the stderr.
|
43
51
|
config.active_support.deprecation = :stderr
|
44
52
|
|
53
|
+
# Raise exceptions for disallowed deprecations.
|
54
|
+
config.active_support.disallowed_deprecation = :raise
|
55
|
+
|
56
|
+
# Tell Active Support which deprecation messages to disallow.
|
57
|
+
config.active_support.disallowed_deprecation_warnings = []
|
58
|
+
|
45
59
|
# Raises error for missing translations.
|
46
60
|
# config.i18n.raise_on_missing_translations = true
|
47
61
|
|
@@ -5,3 +5,8 @@ Rails.application.config.assets.version = "1.0"
|
|
5
5
|
|
6
6
|
# Add additional assets to the asset load path.
|
7
7
|
# Rails.application.config.assets.paths << Emoji.images_path
|
8
|
+
|
9
|
+
# Precompile additional assets.
|
10
|
+
# application.js, application.css, and all non-JS/CSS in the app/assets
|
11
|
+
# folder are already added.
|
12
|
+
# Rails.application.config.assets.precompile += %w[ admin.js admin.css ]
|
@@ -4,5 +4,5 @@
|
|
4
4
|
# Use this to limit dissemination of sensitive information.
|
5
5
|
# See the ActiveSupport::ParameterFilter documentation for supported notations and behaviors.
|
6
6
|
Rails.application.config.filter_parameters += [
|
7
|
-
:passw, :email, :secret, :token, :_key, :crypt, :salt, :certificate, :otp, :ssn
|
7
|
+
:passw, :email, :secret, :token, :_key, :crypt, :salt, :certificate, :otp, :ssn
|
8
8
|
]
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Define an application-wide HTTP permissions policy. For further
|
4
|
+
# information see: https://developers.google.com/web/updates/2018/06/feature-policy
|
5
|
+
|
6
|
+
# Rails.application.config.permissions_policy do |policy|
|
7
|
+
# policy.camera :none
|
8
|
+
# policy.gyroscope :none
|
9
|
+
# policy.microphone :none
|
10
|
+
# policy.usb :none
|
11
|
+
# policy.fullscreen :self
|
12
|
+
# policy.payment :self, "https://secure.example.com"
|
13
|
+
# end
|
@@ -1,17 +1,13 @@
|
|
1
1
|
# This configuration file will be evaluated by Puma. The top-level methods that
|
2
2
|
# are invoked here are part of Puma's configuration DSL. For more information
|
3
3
|
# about methods provided by the DSL, see https://puma.io/puma/Puma/DSL.html.
|
4
|
-
|
4
|
+
|
5
5
|
# Puma starts a configurable number of processes (workers) and each process
|
6
6
|
# serves each request in a thread from an internal thread pool.
|
7
7
|
#
|
8
|
-
# You can control the number of workers using ENV["WEB_CONCURRENCY"]. You
|
9
|
-
# should only set this value when you want to run 2 or more workers. The
|
10
|
-
# default is already 1.
|
11
|
-
#
|
12
8
|
# The ideal number of threads per worker depends both on how much time the
|
13
9
|
# application spends waiting for IO operations and on how much you wish to
|
14
|
-
# prioritize throughput over latency.
|
10
|
+
# to prioritize throughput over latency.
|
15
11
|
#
|
16
12
|
# As a rule of thumb, increasing the number of threads will increase how much
|
17
13
|
# traffic a given process can handle (throughput), but due to CRuby's
|
@@ -33,9 +29,6 @@ port ENV.fetch("PORT", 3000)
|
|
33
29
|
# Allow puma to be restarted by `bin/rails restart` command.
|
34
30
|
plugin :tmp_restart
|
35
31
|
|
36
|
-
# Run the Solid Queue supervisor inside of Puma for single-server deployments
|
37
|
-
plugin :solid_queue if ENV["SOLID_QUEUE_IN_PUMA"]
|
38
|
-
|
39
32
|
# Specify the PID file. Defaults to tmp/pids/server.pid in development.
|
40
33
|
# In other environments, only set the PID file if requested.
|
41
34
|
pidfile ENV["PIDFILE"] if ENV["PIDFILE"]
|
@@ -10,9 +10,9 @@
|
|
10
10
|
#
|
11
11
|
# It's strongly recommended that you check this file into your version control system.
|
12
12
|
|
13
|
-
ActiveRecord::Schema[
|
13
|
+
ActiveRecord::Schema[7.2].define(version: 2025_03_01_041554) do
|
14
14
|
# These are extensions that must be enabled in order to support this database
|
15
|
-
enable_extension "
|
15
|
+
enable_extension "plpgsql"
|
16
16
|
|
17
17
|
create_table "posts", force: :cascade do |t|
|
18
18
|
t.text "name"
|
File without changes
|