+ You can reset your password on
+ <%= link_to "this password reset page", edit_password_url(@user.password_reset_token) %>.
+
+ This link will expire in <%= distance_of_time_in_words(0, @user.password_reset_token_expires_in) %>.
+
diff --git a/app/views/passwords_mailer/reset.text.erb b/app/views/passwords_mailer/reset.text.erb
new file mode 100644
index 0000000..aecee82
--- /dev/null
+++ b/app/views/passwords_mailer/reset.text.erb
@@ -0,0 +1,4 @@
+You can reset your password on
+<%= edit_password_url(@user.password_reset_token) %>
+
+This link will expire in <%= distance_of_time_in_words(0, @user.password_reset_token_expires_in) %>.
diff --git a/app/views/posts/edit.html.erb b/app/views/posts/edit.html.erb
new file mode 100644
index 0000000..57c6d0c
--- /dev/null
+++ b/app/views/posts/edit.html.erb
@@ -0,0 +1,33 @@
+
+
+
diff --git a/bin/brakeman b/bin/brakeman
new file mode 100755
index 0000000..ace1c9b
--- /dev/null
+++ b/bin/brakeman
@@ -0,0 +1,7 @@
+#!/usr/bin/env ruby
+require "rubygems"
+require "bundler/setup"
+
+ARGV.unshift("--ensure-latest")
+
+load Gem.bin_path("brakeman", "brakeman")
diff --git a/bin/bundler-audit b/bin/bundler-audit
new file mode 100755
index 0000000..e2ef226
--- /dev/null
+++ b/bin/bundler-audit
@@ -0,0 +1,6 @@
+#!/usr/bin/env ruby
+require_relative "../config/boot"
+require "bundler/audit/cli"
+
+ARGV.concat %w[ --config config/bundler-audit.yml ] if ARGV.empty? || ARGV.include?("check")
+Bundler::Audit::CLI.start
diff --git a/bin/ci b/bin/ci
new file mode 100755
index 0000000..4137ad5
--- /dev/null
+++ b/bin/ci
@@ -0,0 +1,6 @@
+#!/usr/bin/env ruby
+require_relative "../config/boot"
+require "active_support/continuous_integration"
+
+CI = ActiveSupport::ContinuousIntegration
+require_relative "../config/ci.rb"
diff --git a/bin/dev b/bin/dev
new file mode 100755
index 0000000..5f91c20
--- /dev/null
+++ b/bin/dev
@@ -0,0 +1,2 @@
+#!/usr/bin/env ruby
+exec "./bin/rails", "server", *ARGV
diff --git a/bin/docker-entrypoint b/bin/docker-entrypoint
new file mode 100755
index 0000000..ed31659
--- /dev/null
+++ b/bin/docker-entrypoint
@@ -0,0 +1,8 @@
+#!/bin/bash -e
+
+# If running the rails server then create or migrate existing database
+if [ "${@: -2:1}" == "./bin/rails" ] && [ "${@: -1:1}" == "server" ]; then
+ ./bin/rails db:prepare
+fi
+
+exec "${@}"
diff --git a/bin/importmap b/bin/importmap
new file mode 100755
index 0000000..36502ab
--- /dev/null
+++ b/bin/importmap
@@ -0,0 +1,4 @@
+#!/usr/bin/env ruby
+
+require_relative "../config/application"
+require "importmap/commands"
diff --git a/bin/jobs b/bin/jobs
new file mode 100755
index 0000000..dcf59f3
--- /dev/null
+++ b/bin/jobs
@@ -0,0 +1,6 @@
+#!/usr/bin/env ruby
+
+require_relative "../config/environment"
+require "solid_queue/cli"
+
+SolidQueue::Cli.start(ARGV)
diff --git a/bin/kamal b/bin/kamal
new file mode 100755
index 0000000..d9ba276
--- /dev/null
+++ b/bin/kamal
@@ -0,0 +1,16 @@
+#!/usr/bin/env ruby
+# frozen_string_literal: true
+
+#
+# This file was generated by Bundler.
+#
+# The application 'kamal' is installed as part of a gem, and
+# this file is here to facilitate running it.
+#
+
+ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
+
+require "rubygems"
+require "bundler/setup"
+
+load Gem.bin_path("kamal", "kamal")
diff --git a/bin/rails b/bin/rails
new file mode 100755
index 0000000..efc0377
--- /dev/null
+++ b/bin/rails
@@ -0,0 +1,4 @@
+#!/usr/bin/env ruby
+APP_PATH = File.expand_path("../config/application", __dir__)
+require_relative "../config/boot"
+require "rails/commands"
diff --git a/bin/rake b/bin/rake
new file mode 100755
index 0000000..4fbf10b
--- /dev/null
+++ b/bin/rake
@@ -0,0 +1,4 @@
+#!/usr/bin/env ruby
+require_relative "../config/boot"
+require "rake"
+Rake.application.run
diff --git a/bin/rubocop b/bin/rubocop
new file mode 100755
index 0000000..5a20504
--- /dev/null
+++ b/bin/rubocop
@@ -0,0 +1,8 @@
+#!/usr/bin/env ruby
+require "rubygems"
+require "bundler/setup"
+
+# Explicit RuboCop config increases performance slightly while avoiding config confusion.
+ARGV.unshift("--config", File.expand_path("../.rubocop.yml", __dir__))
+
+load Gem.bin_path("rubocop", "rubocop")
diff --git a/bin/setup b/bin/setup
new file mode 100755
index 0000000..81be011
--- /dev/null
+++ b/bin/setup
@@ -0,0 +1,35 @@
+#!/usr/bin/env ruby
+require "fileutils"
+
+APP_ROOT = File.expand_path("..", __dir__)
+
+def system!(*args)
+ system(*args, exception: true)
+end
+
+FileUtils.chdir APP_ROOT do
+ # This script is a way to set up or update your development environment automatically.
+ # This script is idempotent, so that you can run it at any time and get an expectable outcome.
+ # Add necessary setup steps to this file.
+
+ puts "== Installing dependencies =="
+ system("bundle check") || system!("bundle install")
+
+ # puts "\n== Copying sample files =="
+ # unless File.exist?("config/database.yml")
+ # FileUtils.cp "config/database.yml.sample", "config/database.yml"
+ # end
+
+ puts "\n== Preparing database =="
+ system! "bin/rails db:prepare"
+ system! "bin/rails db:reset" if ARGV.include?("--reset")
+
+ puts "\n== Removing old logs and tempfiles =="
+ system! "bin/rails log:clear tmp:clear"
+
+ unless ARGV.include?("--skip-server")
+ puts "\n== Starting development server =="
+ STDOUT.flush # flush the output before exec(2) so that it displays
+ exec "bin/dev"
+ end
+end
diff --git a/bin/thrust b/bin/thrust
new file mode 100755
index 0000000..36bde2d
--- /dev/null
+++ b/bin/thrust
@@ -0,0 +1,5 @@
+#!/usr/bin/env ruby
+require "rubygems"
+require "bundler/setup"
+
+load Gem.bin_path("thruster", "thrust")
diff --git a/config.ru b/config.ru
new file mode 100644
index 0000000..4a3c09a
--- /dev/null
+++ b/config.ru
@@ -0,0 +1,6 @@
+# This file is used by Rack-based servers to start the application.
+
+require_relative "config/environment"
+
+run Rails.application
+Rails.application.load_server
diff --git a/config/application.rb b/config/application.rb
new file mode 100644
index 0000000..f3cfe47
--- /dev/null
+++ b/config/application.rb
@@ -0,0 +1,27 @@
+require_relative "boot"
+
+require "rails/all"
+
+# Require the gems listed in Gemfile, including any gems
+# you've limited to :test, :development, or :production.
+Bundler.require(*Rails.groups)
+
+module Serenityapp
+ class Application < Rails::Application
+ # Initialize configuration defaults for originally generated Rails version.
+ config.load_defaults 8.1
+
+ # Please, add to the `ignore` list any other `lib` subdirectories that do
+ # not contain `.rb` files, or that should not be reloaded or eager loaded.
+ # Common ones are `templates`, `generators`, or `middleware`, for example.
+ config.autoload_lib(ignore: %w[assets tasks])
+
+ # Configuration for the application, engines, and railties goes here.
+ #
+ # These settings can be overridden in specific environments using the files
+ # in config/environments, which are processed later.
+ #
+ # config.time_zone = "Central Time (US & Canada)"
+ # config.eager_load_paths << Rails.root.join("extras")
+ end
+end
diff --git a/config/boot.rb b/config/boot.rb
new file mode 100644
index 0000000..988a5dd
--- /dev/null
+++ b/config/boot.rb
@@ -0,0 +1,4 @@
+ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
+
+require "bundler/setup" # Set up gems listed in the Gemfile.
+require "bootsnap/setup" # Speed up boot time by caching expensive operations.
diff --git a/config/bundler-audit.yml b/config/bundler-audit.yml
new file mode 100644
index 0000000..e74b3af
--- /dev/null
+++ b/config/bundler-audit.yml
@@ -0,0 +1,5 @@
+# Audit all gems listed in the Gemfile for known security problems by running bin/bundler-audit.
+# CVEs that are not relevant to the application can be enumerated on the ignore list below.
+
+ignore:
+ - CVE-THAT-DOES-NOT-APPLY
diff --git a/config/cable.yml b/config/cable.yml
new file mode 100644
index 0000000..b9adc5a
--- /dev/null
+++ b/config/cable.yml
@@ -0,0 +1,17 @@
+# Async adapter only works within the same process, so for manually triggering cable updates from a console,
+# and seeing results in the browser, you must do so from the web console (running inside the dev process),
+# not a terminal started via bin/rails console! Add "console" to any action or any ERB template view
+# to make the web console appear.
+development:
+ adapter: async
+
+test:
+ adapter: test
+
+production:
+ adapter: solid_cable
+ connects_to:
+ database:
+ writing: cable
+ polling_interval: 0.1.seconds
+ message_retention: 1.day
diff --git a/config/cache.yml b/config/cache.yml
new file mode 100644
index 0000000..19d4908
--- /dev/null
+++ b/config/cache.yml
@@ -0,0 +1,16 @@
+default: &default
+ store_options:
+ # Cap age of oldest cache entry to fulfill retention policies
+ # max_age: <%= 60.days.to_i %>
+ max_size: <%= 256.megabytes %>
+ namespace: <%= Rails.env %>
+
+development:
+ <<: *default
+
+test:
+ <<: *default
+
+production:
+ database: cache
+ <<: *default
diff --git a/config/ci.rb b/config/ci.rb
new file mode 100644
index 0000000..1712cc1
--- /dev/null
+++ b/config/ci.rb
@@ -0,0 +1,24 @@
+# Run using bin/ci
+
+CI.run do
+ step "Setup", "bin/setup --skip-server"
+
+ step "Style: Ruby", "bin/rubocop"
+
+ step "Security: Gem audit", "bin/bundler-audit"
+ step "Security: Importmap vulnerability audit", "bin/importmap audit"
+ step "Security: Brakeman code analysis", "bin/brakeman --quiet --no-pager --exit-on-warn --exit-on-error"
+ step "Tests: Rails", "bin/rails test"
+ step "Tests: Seeds", "env RAILS_ENV=test bin/rails db:seed:replant"
+
+ # Optional: Run system tests
+ # step "Tests: System", "bin/rails test:system"
+
+ # Optional: set a green GitHub commit status to unblock PR merge.
+ # Requires the `gh` CLI and `gh extension install basecamp/gh-signoff`.
+ # if success?
+ # step "Signoff: All systems go. Ready for merge and deploy.", "gh signoff"
+ # else
+ # failure "Signoff: CI failed. Do not merge or deploy.", "Fix the issues and try again."
+ # end
+end
diff --git a/config/credentials.yml.enc b/config/credentials.yml.enc
new file mode 100644
index 0000000..0575616
--- /dev/null
+++ b/config/credentials.yml.enc
@@ -0,0 +1 @@
+7znlXGlRfXFd1K2VB6rAC5XrR+pTRh8DIkcTf+rX9BMTvSoq7HvfDwyl0X87hfmJY26RavvkWG7DXKeNatQ+7b5ue17YtWg37pJNWxgzsMPlGDbmyav8ea+Opp0/PYUW+ViiEoCE2obzJ0k1Gk6j2iYickygJuA4N+dggc3I+jB9ItsRNVQW8Kih/k9cANGQ4m2SHBoTAzvz5tKUGLlrKW/mUhEs7w6MIvUCQq/wYEAvuHX3ONcX2X1yCT2dWxfXxVtgGpwpOMHkjxGoVZ8WiuVfmsQvArhhO4m0DaJ4b2QLo9qJdtoVNpg53dcQNKxJEG1TNFk5o9vu63RR54sVlTnR5nxpesLcCw+kDOopPFGy0X2MFwoPEeGgBjxLnImFqqFCXDYdabk84OPTxQzTywu6SclwmqReVEtFWb41tLLMDFazfwRYYBU6Yfv/gCyMvmoM9kkTRISxI+y5rvEDXIYVfvvqSX2DlwCfU0iI/MQpiZ5LMEc8PzfR--gbShFgJYRjXrXMDH--hozAeljWC9Y+LXWelJpZ+Q==
\ No newline at end of file
diff --git a/config/database.yml b/config/database.yml
new file mode 100644
index 0000000..302d638
--- /dev/null
+++ b/config/database.yml
@@ -0,0 +1,40 @@
+# SQLite. Versions 3.8.0 and up are supported.
+# gem install sqlite3
+#
+# Ensure the SQLite 3 gem is defined in your Gemfile
+# gem "sqlite3"
+#
+default: &default
+ adapter: sqlite3
+ max_connections: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
+ timeout: 5000
+
+development:
+ <<: *default
+ database: storage/development.sqlite3
+
+# Warning: The database defined as "test" will be erased and
+# re-generated from your development database when you run "rake".
+# Do not set this db to the same as development or production.
+test:
+ <<: *default
+ database: storage/test.sqlite3
+
+# Store production database in the storage/ directory, which by default
+# is mounted as a persistent Docker volume in config/deploy.yml.
+production:
+ primary:
+ <<: *default
+ database: storage/production.sqlite3
+ cache:
+ <<: *default
+ database: storage/production_cache.sqlite3
+ migrations_paths: db/cache_migrate
+ queue:
+ <<: *default
+ database: storage/production_queue.sqlite3
+ migrations_paths: db/queue_migrate
+ cable:
+ <<: *default
+ database: storage/production_cable.sqlite3
+ migrations_paths: db/cable_migrate
diff --git a/config/deploy.yml b/config/deploy.yml
new file mode 100644
index 0000000..c5d4b36
--- /dev/null
+++ b/config/deploy.yml
@@ -0,0 +1,119 @@
+# Name of your application. Used to uniquely configure containers.
+service: aggieloves
+
+# Name of the container image (use your-user/app-name on external registries).
+image: aggielovescomputers
+
+# Deploy to these servers.
+servers:
+ web:
+ - 192.168.4.36
+ # job:
+ # hosts:
+ # - 192.168.0.1
+ # cmd: bin/jobs
+
+# Enable SSL auto certification via Let's Encrypt and allow for multiple apps on a single web server.
+# If used with Cloudflare, set encryption mode in SSL/TLS setting to "Full" to enable CF-to-app encryption.
+#
+# Using an SSL proxy like this requires turning on config.assume_ssl and config.force_ssl in production.rb!
+#
+# Don't use this when deploying to multiple web servers (then you have to terminate SSL at your load balancer).
+#
+# proxy:
+# ssl: true
+# host: app.example.com
+
+# Where you keep your container images.
+registry:
+ # Alternatives: hub.docker.com / registry.digitalocean.com / ghcr.io / ...
+ server: localhost:5555
+
+ # Needed for authenticated registries.
+ # username: your-user
+
+ # Always use an access token rather than real password when possible.
+ # password:
+ # - KAMAL_REGISTRY_PASSWORD
+
+# Inject ENV variables into containers (secrets come from .kamal/secrets).
+env:
+ secret:
+ - RAILS_MASTER_KEY
+ clear:
+ # Run the Solid Queue Supervisor inside the web server's Puma process to do jobs.
+ # When you start using multiple servers, you should split out job processing to a dedicated machine.
+ SOLID_QUEUE_IN_PUMA: true
+
+ # Set number of processes dedicated to Solid Queue (default: 1)
+ # JOB_CONCURRENCY: 3
+
+ # Set number of cores available to the application on each server (default: 1).
+ # WEB_CONCURRENCY: 2
+
+ # Match this to any external database server to configure Active Record correctly
+ # Use serenityapp-db for a db accessory server on same machine via local kamal docker network.
+ # DB_HOST: 192.168.0.2
+
+ # Log everything from Rails
+ # RAILS_LOG_LEVEL: debug
+
+# Aliases are triggered with "bin/kamal ". You can overwrite arguments on invocation:
+# "bin/kamal logs -r job" will tail logs from the first server in the job section.
+aliases:
+ console: app exec --interactive --reuse "bin/rails console"
+ shell: app exec --interactive --reuse "bash"
+ logs: app logs -f
+ dbc: app exec --interactive --reuse "bin/rails dbconsole --include-password"
+
+# Use a persistent storage volume for sqlite database files and local Active Storage files.
+# Recommended to change this to a mounted volume path that is backed up off server.
+volumes:
+ - "serenityapp_storage:/rails/storage"
+
+# Bridge fingerprinted assets, like JS and CSS, between versions to avoid
+# hitting 404 on in-flight requests. Combines all files from new and old
+# version inside the asset_path.
+asset_path: /rails/public/assets
+
+# Configure the image builder.
+builder:
+ arch: amd64
+
+ # # Build image via remote server (useful for faster amd64 builds on arm64 computers)
+ # remote: ssh://docker@docker-builder-server
+ #
+ # # Pass arguments and secrets to the Docker build process
+ # args:
+ # RUBY_VERSION: ruby-3.4.7
+ # secrets:
+ # - GITHUB_TOKEN
+ # - RAILS_MASTER_KEY
+
+# Use a different ssh user than root
+# ssh:
+# user: app
+
+# Use accessory services (secrets come from .kamal/secrets).
+# accessories:
+# db:
+# image: mysql:8.0
+# host: 192.168.0.2
+# # Change to 3306 to expose port to the world instead of just local network.
+# port: "127.0.0.1:3306:3306"
+# env:
+# clear:
+# MYSQL_ROOT_HOST: '%'
+# secret:
+# - MYSQL_ROOT_PASSWORD
+# files:
+# - config/mysql/production.cnf:/etc/mysql/my.cnf
+# - db/production.sql:/docker-entrypoint-initdb.d/setup.sql
+# directories:
+# - data:/var/lib/mysql
+# redis:
+# image: valkey/valkey:8
+# host: 192.168.0.2
+# port: 6379
+# directories:
+# - data:/data
diff --git a/config/environment.rb b/config/environment.rb
new file mode 100644
index 0000000..cac5315
--- /dev/null
+++ b/config/environment.rb
@@ -0,0 +1,5 @@
+# Load the Rails application.
+require_relative "application"
+
+# Initialize the Rails application.
+Rails.application.initialize!
diff --git a/config/environments/development.rb b/config/environments/development.rb
new file mode 100644
index 0000000..75243c3
--- /dev/null
+++ b/config/environments/development.rb
@@ -0,0 +1,78 @@
+require "active_support/core_ext/integer/time"
+
+Rails.application.configure do
+ # Settings specified here will take precedence over those in config/application.rb.
+
+ # Make code changes take effect immediately without server restart.
+ config.enable_reloading = true
+
+ # Do not eager load code on boot.
+ config.eager_load = false
+
+ # Show full error reports.
+ config.consider_all_requests_local = true
+
+ # Enable server timing.
+ config.server_timing = true
+
+ # Enable/disable Action Controller caching. By default Action Controller caching is disabled.
+ # Run rails dev:cache to toggle Action Controller caching.
+ if Rails.root.join("tmp/caching-dev.txt").exist?
+ config.action_controller.perform_caching = true
+ config.action_controller.enable_fragment_cache_logging = true
+ config.public_file_server.headers = { "cache-control" => "public, max-age=#{2.days.to_i}" }
+ else
+ config.action_controller.perform_caching = false
+ end
+
+ # Change to :null_store to avoid any caching.
+ config.cache_store = :memory_store
+
+ # Store uploaded files on the local file system (see config/storage.yml for options).
+ config.active_storage.service = :local
+
+ # Don't care if the mailer can't send.
+ config.action_mailer.raise_delivery_errors = false
+
+ # Make template changes take effect immediately.
+ config.action_mailer.perform_caching = false
+
+ # Set localhost to be used by links generated in mailer templates.
+ config.action_mailer.default_url_options = { host: "localhost", port: 3000 }
+
+ # Print deprecation notices to the Rails logger.
+ config.active_support.deprecation = :log
+
+ # Raise an error on page load if there are pending migrations.
+ config.active_record.migration_error = :page_load
+
+ # Highlight code that triggered database queries in logs.
+ config.active_record.verbose_query_logs = true
+
+ # Append comments with runtime information tags to SQL queries in logs.
+ config.active_record.query_log_tags_enabled = true
+
+ # Highlight code that enqueued background job in logs.
+ config.active_job.verbose_enqueue_logs = true
+
+ # Highlight code that triggered redirect in logs.
+ config.action_dispatch.verbose_redirect_logs = true
+
+ # Suppress logger output for asset requests.
+ config.assets.quiet = true
+
+ # Raises error for missing translations.
+ # config.i18n.raise_on_missing_translations = true
+
+ # Annotate rendered view with file names.
+ config.action_view.annotate_rendered_view_with_filenames = true
+
+ # Uncomment if you wish to allow Action Cable access from any origin.
+ # config.action_cable.disable_request_forgery_protection = true
+
+ # Raise error when a before_action's only/except options reference missing actions.
+ config.action_controller.raise_on_missing_callback_actions = true
+
+ # Apply autocorrection by RuboCop to files generated by `bin/rails generate`.
+ # config.generators.apply_rubocop_autocorrect_after_generate!
+end
diff --git a/config/environments/production.rb b/config/environments/production.rb
new file mode 100644
index 0000000..f5763e0
--- /dev/null
+++ b/config/environments/production.rb
@@ -0,0 +1,90 @@
+require "active_support/core_ext/integer/time"
+
+Rails.application.configure do
+ # Settings specified here will take precedence over those in config/application.rb.
+
+ # Code is not reloaded between requests.
+ config.enable_reloading = false
+
+ # Eager load code on boot for better performance and memory savings (ignored by Rake tasks).
+ config.eager_load = true
+
+ # Full error reports are disabled.
+ config.consider_all_requests_local = false
+
+ # Turn on fragment caching in view templates.
+ config.action_controller.perform_caching = true
+
+ # Cache assets for far-future expiry since they are all digest stamped.
+ config.public_file_server.headers = { "cache-control" => "public, max-age=#{1.year.to_i}" }
+
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
+ # config.asset_host = "http://assets.example.com"
+
+ # Store uploaded files on the local file system (see config/storage.yml for options).
+ config.active_storage.service = :local
+
+ # Assume all access to the app is happening through a SSL-terminating reverse proxy.
+ # config.assume_ssl = true
+
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
+ # config.force_ssl = true
+
+ # Skip http-to-https redirect for the default health check endpoint.
+ # config.ssl_options = { redirect: { exclude: ->(request) { request.path == "/up" } } }
+
+ # Log to STDOUT with the current request id as a default log tag.
+ config.log_tags = [ :request_id ]
+ config.logger = ActiveSupport::TaggedLogging.logger(STDOUT)
+
+ # Change to "debug" to log everything (including potentially personally-identifiable information!).
+ config.log_level = ENV.fetch("RAILS_LOG_LEVEL", "info")
+
+ # Prevent health checks from clogging up the logs.
+ config.silence_healthcheck_path = "/up"
+
+ # Don't log any deprecations.
+ config.active_support.report_deprecations = false
+
+ # Replace the default in-process memory cache store with a durable alternative.
+ config.cache_store = :solid_cache_store
+
+ # Replace the default in-process and non-durable queuing backend for Active Job.
+ config.active_job.queue_adapter = :solid_queue
+ config.solid_queue.connects_to = { database: { writing: :queue } }
+
+ # Ignore bad email addresses and do not raise email delivery errors.
+ # Set this to true and configure the email server for immediate delivery to raise delivery errors.
+ # config.action_mailer.raise_delivery_errors = false
+
+ # Set host to be used by links generated in mailer templates.
+ config.action_mailer.default_url_options = { host: "example.com" }
+
+ # Specify outgoing SMTP server. Remember to add smtp/* credentials via bin/rails credentials:edit.
+ # config.action_mailer.smtp_settings = {
+ # user_name: Rails.application.credentials.dig(:smtp, :user_name),
+ # password: Rails.application.credentials.dig(:smtp, :password),
+ # address: "smtp.example.com",
+ # port: 587,
+ # authentication: :plain
+ # }
+
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
+ # the I18n.default_locale when a translation cannot be found).
+ config.i18n.fallbacks = true
+
+ # Do not dump schema after migrations.
+ config.active_record.dump_schema_after_migration = false
+
+ # Only use :id for inspections in production.
+ config.active_record.attributes_for_inspect = [ :id ]
+
+ # Enable DNS rebinding protection and other `Host` header attacks.
+ # config.hosts = [
+ # "example.com", # Allow requests from example.com
+ # /.*\.example\.com/ # Allow requests from subdomains like `www.example.com`
+ # ]
+ #
+ # Skip DNS rebinding protection for the default health check endpoint.
+ # config.host_authorization = { exclude: ->(request) { request.path == "/up" } }
+end
diff --git a/config/environments/test.rb b/config/environments/test.rb
new file mode 100644
index 0000000..c2095b1
--- /dev/null
+++ b/config/environments/test.rb
@@ -0,0 +1,53 @@
+# The test environment is used exclusively to run your application's
+# test suite. You never need to work with it otherwise. Remember that
+# your test database is "scratch space" for the test suite and is wiped
+# and recreated between test runs. Don't rely on the data there!
+
+Rails.application.configure do
+ # Settings specified here will take precedence over those in config/application.rb.
+
+ # While tests run files are not watched, reloading is not necessary.
+ config.enable_reloading = false
+
+ # Eager loading loads your entire application. When running a single test locally,
+ # this is usually not necessary, and can slow down your test suite. However, it's
+ # recommended that you enable it in continuous integration systems to ensure eager
+ # loading is working properly before deploying your code.
+ config.eager_load = ENV["CI"].present?
+
+ # Configure public file server for tests with cache-control for performance.
+ config.public_file_server.headers = { "cache-control" => "public, max-age=3600" }
+
+ # Show full error reports.
+ config.consider_all_requests_local = true
+ config.cache_store = :null_store
+
+ # Render exception templates for rescuable exceptions and raise for other exceptions.
+ config.action_dispatch.show_exceptions = :rescuable
+
+ # Disable request forgery protection in test environment.
+ config.action_controller.allow_forgery_protection = false
+
+ # Store uploaded files on the local file system in a temporary directory.
+ config.active_storage.service = :test
+
+ # Tell Action Mailer not to deliver emails to the real world.
+ # The :test delivery method accumulates sent emails in the
+ # ActionMailer::Base.deliveries array.
+ config.action_mailer.delivery_method = :test
+
+ # Set host to be used by links generated in mailer templates.
+ config.action_mailer.default_url_options = { host: "example.com" }
+
+ # Print deprecation notices to the stderr.
+ config.active_support.deprecation = :stderr
+
+ # Raises error for missing translations.
+ # config.i18n.raise_on_missing_translations = true
+
+ # Annotate rendered view with file names.
+ # config.action_view.annotate_rendered_view_with_filenames = true
+
+ # Raise error when a before_action's only/except options reference missing actions.
+ config.action_controller.raise_on_missing_callback_actions = true
+end
diff --git a/config/importmap.rb b/config/importmap.rb
new file mode 100644
index 0000000..6ed7577
--- /dev/null
+++ b/config/importmap.rb
@@ -0,0 +1,9 @@
+# Pin npm packages by running ./bin/importmap
+
+pin "application"
+pin "@hotwired/turbo-rails", to: "turbo.min.js"
+pin "@hotwired/stimulus", to: "stimulus.min.js"
+pin "@hotwired/stimulus-loading", to: "stimulus-loading.js"
+pin_all_from "app/javascript/controllers", under: "controllers"
+pin "trix"
+pin "@rails/actiontext", to: "actiontext.esm.js"
diff --git a/config/initializers/assets.rb b/config/initializers/assets.rb
new file mode 100644
index 0000000..4873244
--- /dev/null
+++ b/config/initializers/assets.rb
@@ -0,0 +1,7 @@
+# Be sure to restart your server when you modify this file.
+
+# Version of your assets, change this if you want to expire all your assets.
+Rails.application.config.assets.version = "1.0"
+
+# Add additional assets to the asset load path.
+# Rails.application.config.assets.paths << Emoji.images_path
diff --git a/config/initializers/content_security_policy.rb b/config/initializers/content_security_policy.rb
new file mode 100644
index 0000000..d51d713
--- /dev/null
+++ b/config/initializers/content_security_policy.rb
@@ -0,0 +1,29 @@
+# Be sure to restart your server when you modify this file.
+
+# Define an application-wide content security policy.
+# See the Securing Rails Applications Guide for more information:
+# https://guides.rubyonrails.org/security.html#content-security-policy-header
+
+# Rails.application.configure do
+# config.content_security_policy do |policy|
+# policy.default_src :self, :https
+# policy.font_src :self, :https, :data
+# policy.img_src :self, :https, :data
+# policy.object_src :none
+# policy.script_src :self, :https
+# policy.style_src :self, :https
+# # Specify URI for violation reports
+# # policy.report_uri "/csp-violation-report-endpoint"
+# end
+#
+# # Generate session nonces for permitted importmap, inline scripts, and inline styles.
+# config.content_security_policy_nonce_generator = ->(request) { request.session.id.to_s }
+# config.content_security_policy_nonce_directives = %w(script-src style-src)
+#
+# # Automatically add `nonce` to `javascript_tag`, `javascript_include_tag`, and `stylesheet_link_tag`
+# # if the corresponding directives are specified in `content_security_policy_nonce_directives`.
+# # config.content_security_policy_nonce_auto = true
+#
+# # Report violations without enforcing the policy.
+# # config.content_security_policy_report_only = true
+# end
diff --git a/config/initializers/filter_parameter_logging.rb b/config/initializers/filter_parameter_logging.rb
new file mode 100644
index 0000000..c0b717f
--- /dev/null
+++ b/config/initializers/filter_parameter_logging.rb
@@ -0,0 +1,8 @@
+# Be sure to restart your server when you modify this file.
+
+# Configure parameters to be partially matched (e.g. passw matches password) and filtered from the log file.
+# Use this to limit dissemination of sensitive information.
+# See the ActiveSupport::ParameterFilter documentation for supported notations and behaviors.
+Rails.application.config.filter_parameters += [
+ :passw, :email, :secret, :token, :_key, :crypt, :salt, :certificate, :otp, :ssn, :cvv, :cvc
+]
diff --git a/config/initializers/inflections.rb b/config/initializers/inflections.rb
new file mode 100644
index 0000000..3860f65
--- /dev/null
+++ b/config/initializers/inflections.rb
@@ -0,0 +1,16 @@
+# Be sure to restart your server when you modify this file.
+
+# Add new inflection rules using the following format. Inflections
+# are locale specific, and you may define rules for as many different
+# locales as you wish. All of these examples are active by default:
+# ActiveSupport::Inflector.inflections(:en) do |inflect|
+# inflect.plural /^(ox)$/i, "\\1en"
+# inflect.singular /^(ox)en/i, "\\1"
+# inflect.irregular "person", "people"
+# inflect.uncountable %w( fish sheep )
+# end
+
+# These inflection rules are supported but not enabled by default:
+# ActiveSupport::Inflector.inflections(:en) do |inflect|
+# inflect.acronym "RESTful"
+# end
diff --git a/config/locales/en.yml b/config/locales/en.yml
new file mode 100644
index 0000000..6c349ae
--- /dev/null
+++ b/config/locales/en.yml
@@ -0,0 +1,31 @@
+# Files in the config/locales directory are used for internationalization and
+# are automatically loaded by Rails. If you want to use locales other than
+# English, add the necessary files in this directory.
+#
+# To use the locales, use `I18n.t`:
+#
+# I18n.t "hello"
+#
+# In views, this is aliased to just `t`:
+#
+# <%= t("hello") %>
+#
+# To use a different locale, set it with `I18n.locale`:
+#
+# I18n.locale = :es
+#
+# This would use the information in config/locales/es.yml.
+#
+# To learn more about the API, please read the Rails Internationalization guide
+# at https://guides.rubyonrails.org/i18n.html.
+#
+# Be aware that YAML interprets the following case-insensitive strings as
+# booleans: `true`, `false`, `on`, `off`, `yes`, `no`. Therefore, these strings
+# must be quoted to be interpreted as strings. For example:
+#
+# en:
+# "yes": yup
+# enabled: "ON"
+
+en:
+ hello: "Hello world"
diff --git a/config/puma.rb b/config/puma.rb
new file mode 100644
index 0000000..38c4b86
--- /dev/null
+++ b/config/puma.rb
@@ -0,0 +1,42 @@
+# This configuration file will be evaluated by Puma. The top-level methods that
+# are invoked here are part of Puma's configuration DSL. For more information
+# about methods provided by the DSL, see https://puma.io/puma/Puma/DSL.html.
+#
+# Puma starts a configurable number of processes (workers) and each process
+# serves each request in a thread from an internal thread pool.
+#
+# You can control the number of workers using ENV["WEB_CONCURRENCY"]. You
+# should only set this value when you want to run 2 or more workers. The
+# default is already 1. You can set it to `auto` to automatically start a worker
+# for each available processor.
+#
+# The ideal number of threads per worker depends both on how much time the
+# application spends waiting for IO operations and on how much you wish to
+# prioritize throughput over latency.
+#
+# As a rule of thumb, increasing the number of threads will increase how much
+# traffic a given process can handle (throughput), but due to CRuby's
+# Global VM Lock (GVL) it has diminishing returns and will degrade the
+# response time (latency) of the application.
+#
+# The default is set to 3 threads as it's deemed a decent compromise between
+# throughput and latency for the average Rails application.
+#
+# Any libraries that use a connection pool or another resource pool should
+# be configured to provide at least as many connections as the number of
+# threads. This includes Active Record's `pool` parameter in `database.yml`.
+threads_count = ENV.fetch("RAILS_MAX_THREADS", 3)
+threads threads_count, threads_count
+
+# Specifies the `port` that Puma will listen on to receive requests; default is 3000.
+port ENV.fetch("PORT", 3000)
+
+# Allow puma to be restarted by `bin/rails restart` command.
+plugin :tmp_restart
+
+# Run the Solid Queue supervisor inside of Puma for single-server deployments.
+plugin :solid_queue if ENV["SOLID_QUEUE_IN_PUMA"]
+
+# Specify the PID file. Defaults to tmp/pids/server.pid in development.
+# In other environments, only set the PID file if requested.
+pidfile ENV["PIDFILE"] if ENV["PIDFILE"]
diff --git a/config/queue.yml b/config/queue.yml
new file mode 100644
index 0000000..6b14360
--- /dev/null
+++ b/config/queue.yml
@@ -0,0 +1,18 @@
+default: &default
+ dispatchers:
+ - polling_interval: 1
+ batch_size: 500
+ workers:
+ - queues: "*"
+ threads: 3
+ processes: <%= ENV.fetch("JOB_CONCURRENCY", 1) %>
+ polling_interval: 1
+
+development:
+ <<: *default
+
+test:
+ <<: *default
+
+production:
+ <<: *default
diff --git a/config/recurring.yml b/config/recurring.yml
new file mode 100644
index 0000000..b4207f9
--- /dev/null
+++ b/config/recurring.yml
@@ -0,0 +1,15 @@
+# examples:
+# periodic_cleanup:
+# class: CleanSoftDeletedRecordsJob
+# queue: background
+# args: [ 1000, { batch_size: 500 } ]
+# schedule: every hour
+# periodic_cleanup_with_command:
+# command: "SoftDeletedRecord.due.delete_all"
+# priority: 2
+# schedule: at 5am every day
+
+production:
+ clear_solid_queue_finished_jobs:
+ command: "SolidQueue::Job.clear_finished_in_batches(sleep_between_batches: 0.3)"
+ schedule: every hour at minute 12
diff --git a/config/routes.rb b/config/routes.rb
new file mode 100644
index 0000000..312a0b1
--- /dev/null
+++ b/config/routes.rb
@@ -0,0 +1,27 @@
+Rails.application.routes.draw do
+ resource :session
+ #
+ get "up" => "rails/health#show", as: :rails_health_check
+ #
+ root "welcome#index"
+
+ resource :session, only: %i[new create destroy]
+ resources :passwords, param: :token
+
+ get "/login", to: "sessions#new"
+ post "/login", to: "sessions#create"
+ delete "/sign_out", to: "sessions#destroy", as: :sign_out
+
+ get "feed", to: "articles#feed", format: "xml", as: :feed
+resources :sitereports
+
+ resources :miniposts
+
+resources :profiles do
+ resources :blogs do
+ resources :posts
+ end
+ end
+ end
+
+
diff --git a/config/storage.yml b/config/storage.yml
new file mode 100644
index 0000000..927dc53
--- /dev/null
+++ b/config/storage.yml
@@ -0,0 +1,27 @@
+test:
+ service: Disk
+ root: <%= Rails.root.join("tmp/storage") %>
+
+local:
+ service: Disk
+ root: <%= Rails.root.join("storage") %>
+
+# Use bin/rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key)
+# amazon:
+# service: S3
+# access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %>
+# secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %>
+# region: us-east-1
+# bucket: your_own_bucket-<%= Rails.env %>
+
+# Remember not to checkin your GCS keyfile to a repository
+# google:
+# service: GCS
+# project: your_project
+# credentials: <%= Rails.root.join("path/to/gcs.keyfile") %>
+# bucket: your_own_bucket-<%= Rails.env %>
+
+# mirror:
+# service: Mirror
+# primary: local
+# mirrors: [ amazon, google, microsoft ]
diff --git a/db/cable_schema.rb b/db/cable_schema.rb
new file mode 100644
index 0000000..2366660
--- /dev/null
+++ b/db/cable_schema.rb
@@ -0,0 +1,11 @@
+ActiveRecord::Schema[7.1].define(version: 1) do
+ create_table "solid_cable_messages", force: :cascade do |t|
+ t.binary "channel", limit: 1024, null: false
+ t.binary "payload", limit: 536870912, null: false
+ t.datetime "created_at", null: false
+ t.integer "channel_hash", limit: 8, null: false
+ t.index ["channel"], name: "index_solid_cable_messages_on_channel"
+ t.index ["channel_hash"], name: "index_solid_cable_messages_on_channel_hash"
+ t.index ["created_at"], name: "index_solid_cable_messages_on_created_at"
+ end
+end
diff --git a/db/cache_schema.rb b/db/cache_schema.rb
new file mode 100644
index 0000000..81a410d
--- /dev/null
+++ b/db/cache_schema.rb
@@ -0,0 +1,12 @@
+ActiveRecord::Schema[7.2].define(version: 1) do
+ create_table "solid_cache_entries", force: :cascade do |t|
+ t.binary "key", limit: 1024, null: false
+ t.binary "value", limit: 536870912, null: false
+ t.datetime "created_at", null: false
+ t.integer "key_hash", limit: 8, null: false
+ t.integer "byte_size", limit: 4, null: false
+ t.index ["byte_size"], name: "index_solid_cache_entries_on_byte_size"
+ t.index ["key_hash", "byte_size"], name: "index_solid_cache_entries_on_key_hash_and_byte_size"
+ t.index ["key_hash"], name: "index_solid_cache_entries_on_key_hash", unique: true
+ end
+end
diff --git a/db/migrate/20260824063536_create_profiles.rb b/db/migrate/20260824063536_create_profiles.rb
new file mode 100644
index 0000000..816c2a2
--- /dev/null
+++ b/db/migrate/20260824063536_create_profiles.rb
@@ -0,0 +1,12 @@
+class CreateProfiles < ActiveRecord::Migration[8.1]
+ def change
+ create_table :profiles do |t|
+ t.string :name
+ t.string :age
+ t.string :pronouns
+ t.text :interests
+
+ t.timestamps
+ end
+ end
+end
diff --git a/db/migrate/20260824063846_create_blogs.rb b/db/migrate/20260824063846_create_blogs.rb
new file mode 100644
index 0000000..8efaa07
--- /dev/null
+++ b/db/migrate/20260824063846_create_blogs.rb
@@ -0,0 +1,10 @@
+class CreateBlogs < ActiveRecord::Migration[8.1]
+ def change
+ create_table :blogs do |t|
+ t.string :title
+ t.text :topic
+
+ t.timestamps
+ end
+ end
+end
diff --git a/db/migrate/20260824063930_create_posts.rb b/db/migrate/20260824063930_create_posts.rb
new file mode 100644
index 0000000..58953e8
--- /dev/null
+++ b/db/migrate/20260824063930_create_posts.rb
@@ -0,0 +1,12 @@
+class CreatePosts < ActiveRecord::Migration[8.1]
+ def change
+ create_table :posts do |t|
+ t.string :title
+ t.text :body
+ t.string :mood
+ t.text :music
+
+ t.timestamps
+ end
+ end
+end
diff --git a/db/migrate/20260824063957_create_miniblogs.rb b/db/migrate/20260824063957_create_miniblogs.rb
new file mode 100644
index 0000000..b88dc5c
--- /dev/null
+++ b/db/migrate/20260824063957_create_miniblogs.rb
@@ -0,0 +1,9 @@
+class CreateMiniblogs < ActiveRecord::Migration[8.1]
+ def change
+ create_table :miniblogs do |t|
+ t.text :about
+
+ t.timestamps
+ end
+ end
+end
diff --git a/db/migrate/20260824064020_create_miniposts.rb b/db/migrate/20260824064020_create_miniposts.rb
new file mode 100644
index 0000000..d864302
--- /dev/null
+++ b/db/migrate/20260824064020_create_miniposts.rb
@@ -0,0 +1,9 @@
+class CreateMiniposts < ActiveRecord::Migration[8.1]
+ def change
+ create_table :miniposts do |t|
+ t.text :body
+
+ t.timestamps
+ end
+ end
+end
diff --git a/db/migrate/20260824065713_create_updates.rb b/db/migrate/20260824065713_create_updates.rb
new file mode 100644
index 0000000..98261bf
--- /dev/null
+++ b/db/migrate/20260824065713_create_updates.rb
@@ -0,0 +1,7 @@
+class CreateUpdates < ActiveRecord::Migration[8.1]
+ def change
+ create_table :updates do |t|
+ t.timestamps
+ end
+ end
+end
diff --git a/db/migrate/20260824065827_add_text_to_updates.rb b/db/migrate/20260824065827_add_text_to_updates.rb
new file mode 100644
index 0000000..dfd0b02
--- /dev/null
+++ b/db/migrate/20260824065827_add_text_to_updates.rb
@@ -0,0 +1,5 @@
+class AddTextToUpdates < ActiveRecord::Migration[8.1]
+ def change
+ add_column :updates, :body, :text
+ end
+end
diff --git a/db/migrate/20260824070116_create_site_reports.rb b/db/migrate/20260824070116_create_site_reports.rb
new file mode 100644
index 0000000..d7368da
--- /dev/null
+++ b/db/migrate/20260824070116_create_site_reports.rb
@@ -0,0 +1,9 @@
+class CreateSiteReports < ActiveRecord::Migration[8.1]
+ def change
+ create_table :site_reports do |t|
+ t.text :body
+
+ t.timestamps
+ end
+ end
+end
diff --git a/db/migrate/20260824070953_add_bio_to_profiles.rb b/db/migrate/20260824070953_add_bio_to_profiles.rb
new file mode 100644
index 0000000..978f456
--- /dev/null
+++ b/db/migrate/20260824070953_add_bio_to_profiles.rb
@@ -0,0 +1,5 @@
+class AddBioToProfiles < ActiveRecord::Migration[8.1]
+ def change
+ add_column :profiles, :bio, :text
+ end
+end
diff --git a/db/migrate/20260824071635_add_text_to_miniblogs.rb b/db/migrate/20260824071635_add_text_to_miniblogs.rb
new file mode 100644
index 0000000..dc56c5f
--- /dev/null
+++ b/db/migrate/20260824071635_add_text_to_miniblogs.rb
@@ -0,0 +1,4 @@
+class AddTextToMiniblogs < ActiveRecord::Migration[8.1]
+ def change
+ end
+end
diff --git a/db/migrate/20260824072809_create_users.rb b/db/migrate/20260824072809_create_users.rb
new file mode 100644
index 0000000..71f2ff1
--- /dev/null
+++ b/db/migrate/20260824072809_create_users.rb
@@ -0,0 +1,11 @@
+class CreateUsers < ActiveRecord::Migration[8.1]
+ def change
+ create_table :users do |t|
+ t.string :email_address, null: false
+ t.string :password_digest, null: false
+
+ t.timestamps
+ end
+ add_index :users, :email_address, unique: true
+ end
+end
diff --git a/db/migrate/20260824072810_create_sessions.rb b/db/migrate/20260824072810_create_sessions.rb
new file mode 100644
index 0000000..ec9efdb
--- /dev/null
+++ b/db/migrate/20260824072810_create_sessions.rb
@@ -0,0 +1,11 @@
+class CreateSessions < ActiveRecord::Migration[8.1]
+ def change
+ create_table :sessions do |t|
+ t.references :user, null: false, foreign_key: true
+ t.string :ip_address
+ t.string :user_agent
+
+ t.timestamps
+ end
+ end
+end
diff --git a/db/migrate/20260824074717_add_text_to_sitereports.rb b/db/migrate/20260824074717_add_text_to_sitereports.rb
new file mode 100644
index 0000000..4170a78
--- /dev/null
+++ b/db/migrate/20260824074717_add_text_to_sitereports.rb
@@ -0,0 +1,4 @@
+class AddTextToSitereports < ActiveRecord::Migration[8.1]
+ def change
+ end
+end
diff --git a/db/migrate/20260824074736_add_text2_to_sitereports.rb b/db/migrate/20260824074736_add_text2_to_sitereports.rb
new file mode 100644
index 0000000..4968f88
--- /dev/null
+++ b/db/migrate/20260824074736_add_text2_to_sitereports.rb
@@ -0,0 +1,5 @@
+class AddText2ToSitereports < ActiveRecord::Migration[8.1]
+ def change
+ add_column :sitereports, :text, :text
+ end
+end
diff --git a/db/migrate/20260824081257_create_active_storage_tables.active_storage.rb b/db/migrate/20260824081257_create_active_storage_tables.active_storage.rb
new file mode 100644
index 0000000..6bd8bd0
--- /dev/null
+++ b/db/migrate/20260824081257_create_active_storage_tables.active_storage.rb
@@ -0,0 +1,57 @@
+# This migration comes from active_storage (originally 20170806125915)
+class CreateActiveStorageTables < ActiveRecord::Migration[7.0]
+ def change
+ # Use Active Record's configured type for primary and foreign keys
+ primary_key_type, foreign_key_type = primary_and_foreign_key_types
+
+ create_table :active_storage_blobs, id: primary_key_type do |t|
+ t.string :key, null: false
+ t.string :filename, null: false
+ t.string :content_type
+ t.text :metadata
+ t.string :service_name, null: false
+ t.bigint :byte_size, null: false
+ t.string :checksum
+
+ if connection.supports_datetime_with_precision?
+ t.datetime :created_at, precision: 6, null: false
+ else
+ t.datetime :created_at, null: false
+ end
+
+ t.index [ :key ], unique: true
+ end
+
+ create_table :active_storage_attachments, id: primary_key_type do |t|
+ t.string :name, null: false
+ t.references :record, null: false, polymorphic: true, index: false, type: foreign_key_type
+ t.references :blob, null: false, type: foreign_key_type
+
+ if connection.supports_datetime_with_precision?
+ t.datetime :created_at, precision: 6, null: false
+ else
+ t.datetime :created_at, null: false
+ end
+
+ t.index [ :record_type, :record_id, :name, :blob_id ], name: :index_active_storage_attachments_uniqueness, unique: true
+ t.foreign_key :active_storage_blobs, column: :blob_id
+ end
+
+ create_table :active_storage_variant_records, id: primary_key_type do |t|
+ t.belongs_to :blob, null: false, index: false, type: foreign_key_type
+ t.string :variation_digest, null: false
+
+ t.index [ :blob_id, :variation_digest ], name: :index_active_storage_variant_records_uniqueness, unique: true
+ t.foreign_key :active_storage_blobs, column: :blob_id
+ end
+ end
+
+ private
+ def primary_and_foreign_key_types
+ config = Rails.configuration.generators
+ setting = config.options[config.orm][:primary_key_type]
+ primary_key_type = setting || :primary_key
+ foreign_key_type = setting || :bigint
+ [ primary_key_type, foreign_key_type ]
+ end
+end
diff --git a/db/migrate/20260824081258_create_action_text_tables.action_text.rb b/db/migrate/20260824081258_create_action_text_tables.action_text.rb
new file mode 100644
index 0000000..c1c0a9d
--- /dev/null
+++ b/db/migrate/20260824081258_create_action_text_tables.action_text.rb
@@ -0,0 +1,26 @@
+# This migration comes from action_text (originally 20180528164100)
+class CreateActionTextTables < ActiveRecord::Migration[6.0]
+ def change
+ # Use Active Record's configured type for primary and foreign keys
+ primary_key_type, foreign_key_type = primary_and_foreign_key_types
+
+ create_table :action_text_rich_texts, id: primary_key_type do |t|
+ t.string :name, null: false
+ t.text :body, size: :long
+ t.references :record, null: false, polymorphic: true, index: false, type: foreign_key_type
+
+ t.timestamps
+
+ t.index [ :record_type, :record_id, :name ], name: "index_action_text_rich_texts_uniqueness", unique: true
+ end
+ end
+
+ private
+ def primary_and_foreign_key_types
+ config = Rails.configuration.generators
+ setting = config.options[config.orm][:primary_key_type]
+ primary_key_type = setting || :primary_key
+ foreign_key_type = setting || :bigint
+ [ primary_key_type, foreign_key_type ]
+ end
+end
diff --git a/db/migrate/20260824082319_remove_text_from_site_reports.rb b/db/migrate/20260824082319_remove_text_from_site_reports.rb
new file mode 100644
index 0000000..b83b677
--- /dev/null
+++ b/db/migrate/20260824082319_remove_text_from_site_reports.rb
@@ -0,0 +1,4 @@
+class RemoveTextFromSiteReports < ActiveRecord::Migration[8.1]
+ def change
+ end
+end
diff --git a/db/migrate/20260824082359_add_innershit_to_sitereports.rb b/db/migrate/20260824082359_add_innershit_to_sitereports.rb
new file mode 100644
index 0000000..eb69788
--- /dev/null
+++ b/db/migrate/20260824082359_add_innershit_to_sitereports.rb
@@ -0,0 +1,4 @@
+class AddInnershitToSitereports < ActiveRecord::Migration[8.1]
+ def change
+ end
+end
diff --git a/db/migrate/20260824082753_remove_site_reports.rb b/db/migrate/20260824082753_remove_site_reports.rb
new file mode 100644
index 0000000..0e783ef
--- /dev/null
+++ b/db/migrate/20260824082753_remove_site_reports.rb
@@ -0,0 +1,4 @@
+class RemoveSiteReports < ActiveRecord::Migration[8.1]
+ def change
+ end
+end
diff --git a/db/migrate/20260824083117_drop_sitereports.rb b/db/migrate/20260824083117_drop_sitereports.rb
new file mode 100644
index 0000000..9e83cff
--- /dev/null
+++ b/db/migrate/20260824083117_drop_sitereports.rb
@@ -0,0 +1,5 @@
+class DropSitereports < ActiveRecord::Migration[8.1]
+ def change
+ drop_table :sitereports
+ end
+end
diff --git a/db/migrate/20260824083336_create_sitereports.rb b/db/migrate/20260824083336_create_sitereports.rb
new file mode 100644
index 0000000..7560b6c
--- /dev/null
+++ b/db/migrate/20260824083336_create_sitereports.rb
@@ -0,0 +1,9 @@
+class CreateSitereports < ActiveRecord::Migration[8.1]
+ def change
+ create_table :sitereports do |t|
+ t.text :context
+
+ t.timestamps
+ end
+ end
+end
diff --git a/db/migrate/20260824084537_create_newstuff.rb b/db/migrate/20260824084537_create_newstuff.rb
new file mode 100644
index 0000000..6bc2bcb
--- /dev/null
+++ b/db/migrate/20260824084537_create_newstuff.rb
@@ -0,0 +1,9 @@
+class CreateNewstuff < ActiveRecord::Migration[8.1]
+ def change
+ create_table :newstuffs do |t|
+ t.text :newstuff
+
+ t.timestamps
+ end
+ end
+end
diff --git a/db/migrate/20260824084942_add_newshit_to_sitereports.rb b/db/migrate/20260824084942_add_newshit_to_sitereports.rb
new file mode 100644
index 0000000..f03e451
--- /dev/null
+++ b/db/migrate/20260824084942_add_newshit_to_sitereports.rb
@@ -0,0 +1,5 @@
+class AddNewshitToSitereports < ActiveRecord::Migration[8.1]
+ def change
+ add_column :sitereports, :newshit, :text
+ end
+end
diff --git a/db/migrate/20260824085115_remove_context_from_sitereports.rb b/db/migrate/20260824085115_remove_context_from_sitereports.rb
new file mode 100644
index 0000000..c10db2d
--- /dev/null
+++ b/db/migrate/20260824085115_remove_context_from_sitereports.rb
@@ -0,0 +1,5 @@
+class RemoveContextFromSitereports < ActiveRecord::Migration[8.1]
+ def change
+ remove_column :sitereports, :context, :text
+ end
+end
diff --git a/db/migrate/20260824093551_create_bio.rb b/db/migrate/20260824093551_create_bio.rb
new file mode 100644
index 0000000..7636657
--- /dev/null
+++ b/db/migrate/20260824093551_create_bio.rb
@@ -0,0 +1,13 @@
+class CreateBio < ActiveRecord::Migration[8.1]
+ def change
+ create_table :bios do |t|
+ t.string :authorname
+ t.string :age
+ t.text :pronouns
+ t.text :biog
+ t.text :interests
+
+ t.timestamps
+ end
+ end
+end
diff --git a/db/migrate/20260824100846_add_user_to_profiles.rb b/db/migrate/20260824100846_add_user_to_profiles.rb
new file mode 100644
index 0000000..710e281
--- /dev/null
+++ b/db/migrate/20260824100846_add_user_to_profiles.rb
@@ -0,0 +1,5 @@
+class AddUserToProfiles < ActiveRecord::Migration[8.1]
+ def change
+ add_reference :profiles, :user, null: false, foreign_key: true
+ end
+end
diff --git a/db/migrate/20260824104744_add_profile_to_blogs.rb b/db/migrate/20260824104744_add_profile_to_blogs.rb
new file mode 100644
index 0000000..ecc260c
--- /dev/null
+++ b/db/migrate/20260824104744_add_profile_to_blogs.rb
@@ -0,0 +1,5 @@
+class AddProfileToBlogs < ActiveRecord::Migration[8.1]
+ def change
+ add_reference :blogs, :profiles, null: false, foreign_key: true
+ end
+end
diff --git a/db/migrate/20260824105227_rename_profiles_id_to_profile_id_in_blogs.rb b/db/migrate/20260824105227_rename_profiles_id_to_profile_id_in_blogs.rb
new file mode 100644
index 0000000..1f50015
--- /dev/null
+++ b/db/migrate/20260824105227_rename_profiles_id_to_profile_id_in_blogs.rb
@@ -0,0 +1,5 @@
+class RenameProfilesIdToProfileIdInBlogs < ActiveRecord::Migration[8.1]
+ def change
+ rename_column :blogs, :profiles_id, :profile_id
+ end
+end
diff --git a/db/migrate/20260824111408_add_blog_id_to_posts.rb b/db/migrate/20260824111408_add_blog_id_to_posts.rb
new file mode 100644
index 0000000..21168fc
--- /dev/null
+++ b/db/migrate/20260824111408_add_blog_id_to_posts.rb
@@ -0,0 +1,5 @@
+class AddBlogIdToPosts < ActiveRecord::Migration[8.1]
+ def change
+ add_reference :posts, :blogs, null: false, foreign_key: true
+ end
+end
diff --git a/db/migrate/20260824111636_rename_blogs_id_to_blog_id_in_posts.rb b/db/migrate/20260824111636_rename_blogs_id_to_blog_id_in_posts.rb
new file mode 100644
index 0000000..36162fd
--- /dev/null
+++ b/db/migrate/20260824111636_rename_blogs_id_to_blog_id_in_posts.rb
@@ -0,0 +1,5 @@
+class RenameBlogsIdToBlogIdInPosts < ActiveRecord::Migration[8.1]
+ def change
+rename_column :posts, :blogs_id, :blog_id
+ end
+end
diff --git a/db/migrate/20260824114813_add_post_id_to_posts.rb b/db/migrate/20260824114813_add_post_id_to_posts.rb
new file mode 100644
index 0000000..9b4d730
--- /dev/null
+++ b/db/migrate/20260824114813_add_post_id_to_posts.rb
@@ -0,0 +1,5 @@
+class AddPostIdToPosts < ActiveRecord::Migration[8.1]
+ def change
+ add_column :posts, :post_id, :integer
+ end
+end
diff --git a/db/queue_schema.rb b/db/queue_schema.rb
new file mode 100644
index 0000000..f9a71da
--- /dev/null
+++ b/db/queue_schema.rb
@@ -0,0 +1,160 @@
+ActiveRecord::Schema[7.1].define(version: 1) do
+ create_table "solid_queue_blocked_executions", force: :cascade do |t|
+ t.bigint "job_id", null: false
+ t.string "queue_name", null: false
+ t.integer "priority", default: 0, null: false
+ t.string "concurrency_key", null: false
+ t.datetime "expires_at", null: false
+ t.datetime "created_at", null: false
+ t.index [ "concurrency_key", "priority", "job_id" ], name: "index_solid_queue_blocked_executions_for_release"
+ t.index [ "expires_at", "concurrency_key" ], name: "index_solid_queue_blocked_executions_for_maintenance"
+ t.index [ "job_id" ], name: "index_solid_queue_blocked_executions_on_job_id", unique: true
+ end
+
+ create_table "solid_queue_claimed_executions", force: :cascade do |t|
+ t.bigint "job_id", null: false
+ t.bigint "process_id"
+ t.datetime "created_at", null: false
+ t.index [ "job_id" ], name: "index_solid_queue_claimed_executions_on_job_id", unique: true
+ t.index [ "process_id", "job_id" ], name: "index_solid_queue_claimed_executions_on_process_id_and_job_id"
+ end
+
+ create_table "solid_queue_failed_executions", force: :cascade do |t|
+ t.bigint "job_id", null: false
+ t.text "error"
+ t.datetime "created_at", null: false
+ t.index [ "job_id" ], name: "index_solid_queue_failed_executions_on_job_id", unique: true
+ end
+
+ create_table "solid_queue_jobs", force: :cascade do |t|
+ t.string "queue_name", null: false
+ t.string "class_name", null: false
+ t.text "arguments"
+ t.integer "priority", default: 0, null: false
+ t.string "active_job_id"
+ t.datetime "scheduled_at"
+ t.datetime "finished_at"
+ t.string "concurrency_key"
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
+ t.bigint "batch_id"
+ t.index [ "active_job_id" ], name: "index_solid_queue_jobs_on_active_job_id"
+ t.index [ "batch_id" ], name: "index_solid_queue_jobs_on_batch_id"
+ t.index [ "class_name" ], name: "index_solid_queue_jobs_on_class_name"
+ t.index [ "finished_at" ], name: "index_solid_queue_jobs_on_finished_at"
+ t.index [ "queue_name", "finished_at" ], name: "index_solid_queue_jobs_for_filtering"
+ t.index [ "scheduled_at", "finished_at" ], name: "index_solid_queue_jobs_for_alerting"
+ end
+
+ create_table "solid_queue_pauses", force: :cascade do |t|
+ t.string "queue_name", null: false
+ t.datetime "created_at", null: false
+ t.index [ "queue_name" ], name: "index_solid_queue_pauses_on_queue_name", unique: true
+ end
+
+ create_table "solid_queue_processes", force: :cascade do |t|
+ t.string "kind", null: false
+ t.datetime "last_heartbeat_at", null: false
+ t.bigint "supervisor_id"
+ t.integer "pid", null: false
+ t.string "hostname"
+ t.text "metadata"
+ t.datetime "created_at", null: false
+ t.string "name", null: false
+ t.index [ "last_heartbeat_at" ], name: "index_solid_queue_processes_on_last_heartbeat_at"
+ t.index [ "name", "supervisor_id" ], name: "index_solid_queue_processes_on_name_and_supervisor_id", unique: true
+ t.index [ "supervisor_id" ], name: "index_solid_queue_processes_on_supervisor_id"
+ end
+
+ create_table "solid_queue_ready_executions", force: :cascade do |t|
+ t.bigint "job_id", null: false
+ t.string "queue_name", null: false
+ t.integer "priority", default: 0, null: false
+ t.datetime "created_at", null: false
+ t.index [ "job_id" ], name: "index_solid_queue_ready_executions_on_job_id", unique: true
+ t.index [ "priority", "job_id" ], name: "index_solid_queue_poll_all"
+ t.index [ "queue_name", "priority", "job_id" ], name: "index_solid_queue_poll_by_queue"
+ end
+
+ create_table "solid_queue_recurring_executions", force: :cascade do |t|
+ t.bigint "job_id", null: false
+ t.string "task_key", null: false
+ t.datetime "run_at", null: false
+ t.datetime "created_at", null: false
+ t.index [ "job_id" ], name: "index_solid_queue_recurring_executions_on_job_id", unique: true
+ t.index [ "task_key", "run_at" ], name: "index_solid_queue_recurring_executions_on_task_key_and_run_at", unique: true
+ end
+
+ create_table "solid_queue_recurring_tasks", force: :cascade do |t|
+ t.string "key", null: false
+ t.string "schedule", null: false
+ t.string "command", limit: 2048
+ t.string "class_name"
+ t.text "arguments"
+ t.string "queue_name"
+ t.integer "priority", default: 0
+ t.boolean "static", default: true, null: false
+ t.text "description"
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
+ t.index [ "key" ], name: "index_solid_queue_recurring_tasks_on_key", unique: true
+ t.index [ "static" ], name: "index_solid_queue_recurring_tasks_on_static"
+ end
+
+ create_table "solid_queue_scheduled_executions", force: :cascade do |t|
+ t.bigint "job_id", null: false
+ t.string "queue_name", null: false
+ t.integer "priority", default: 0, null: false
+ t.datetime "scheduled_at", null: false
+ t.datetime "created_at", null: false
+ t.index [ "job_id" ], name: "index_solid_queue_scheduled_executions_on_job_id", unique: true
+ t.index [ "scheduled_at", "priority", "job_id" ], name: "index_solid_queue_dispatch_all"
+ end
+
+ create_table "solid_queue_semaphores", force: :cascade do |t|
+ t.string "key", null: false
+ t.integer "value", default: 1, null: false
+ t.datetime "expires_at", null: false
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
+ t.index [ "expires_at" ], name: "index_solid_queue_semaphores_on_expires_at"
+ t.index [ "key", "value" ], name: "index_solid_queue_semaphores_on_key_and_value"
+ t.index [ "key" ], name: "index_solid_queue_semaphores_on_key", unique: true
+ end
+
+ create_table "solid_queue_batches", force: :cascade do |t|
+ t.string "active_job_batch_id"
+ t.string "description"
+ t.text "on_finish"
+ t.text "on_success"
+ t.text "on_failure"
+ t.text "metadata"
+ t.integer "total_jobs", default: 0, null: false
+ t.integer "completed_jobs", default: 0, null: false
+ t.integer "failed_jobs", default: 0, null: false
+ t.datetime "enqueued_at"
+ t.datetime "finished_at"
+ t.datetime "failed_at"
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
+ t.index [ "active_job_batch_id" ], name: "index_solid_queue_batches_on_active_job_batch_id", unique: true
+ t.index [ "finished_at" ], name: "index_solid_queue_batches_on_finished_at"
+ end
+
+ create_table "solid_queue_batch_executions", force: :cascade do |t|
+ t.bigint "job_id", null: false
+ t.bigint "batch_id", null: false
+ t.datetime "created_at", null: false
+ t.index [ "job_id" ], name: "index_solid_queue_batch_executions_on_job_id", unique: true
+ t.index [ "batch_id" ], name: "index_solid_queue_batch_executions_on_batch_id"
+ end
+
+ add_foreign_key "solid_queue_batch_executions", "solid_queue_batches", column: "batch_id", on_delete: :cascade
+ add_foreign_key "solid_queue_batch_executions", "solid_queue_jobs", column: "job_id", on_delete: :cascade
+ add_foreign_key "solid_queue_blocked_executions", "solid_queue_jobs", column: "job_id", on_delete: :cascade
+ add_foreign_key "solid_queue_claimed_executions", "solid_queue_jobs", column: "job_id", on_delete: :cascade
+ add_foreign_key "solid_queue_failed_executions", "solid_queue_jobs", column: "job_id", on_delete: :cascade
+ add_foreign_key "solid_queue_ready_executions", "solid_queue_jobs", column: "job_id", on_delete: :cascade
+ add_foreign_key "solid_queue_recurring_executions", "solid_queue_jobs", column: "job_id", on_delete: :cascade
+ add_foreign_key "solid_queue_scheduled_executions", "solid_queue_jobs", column: "job_id", on_delete: :cascade
+end
diff --git a/db/schema.rb b/db/schema.rb
new file mode 100644
index 0000000..33327d6
--- /dev/null
+++ b/db/schema.rb
@@ -0,0 +1,154 @@
+# This file is auto-generated from the current state of the database. Instead
+# of editing this file, please use the migrations feature of Active Record to
+# incrementally modify your database, and then regenerate this schema definition.
+#
+# This file is the source Rails uses to define your schema when running `bin/rails
+# db:schema:load`. When creating a new database, `bin/rails db:schema:load` tends to
+# be faster and is potentially less error prone than running all of your
+# migrations from scratch. Old migrations may fail to apply correctly if those
+# migrations use external dependencies or application code.
+#
+# It's strongly recommended that you check this file into your version control system.
+
+ActiveRecord::Schema[8.1].define(version: 2026_08_24_114813) do
+ create_table "action_text_rich_texts", force: :cascade do |t|
+ t.text "body"
+ t.datetime "created_at", null: false
+ t.string "name", null: false
+ t.bigint "record_id", null: false
+ t.string "record_type", null: false
+ t.datetime "updated_at", null: false
+ t.index ["record_type", "record_id", "name"], name: "index_action_text_rich_texts_uniqueness", unique: true
+ end
+
+ create_table "active_storage_attachments", force: :cascade do |t|
+ t.bigint "blob_id", null: false
+ t.datetime "created_at", null: false
+ t.string "name", null: false
+ t.bigint "record_id", null: false
+ t.string "record_type", null: false
+ t.index ["blob_id"], name: "index_active_storage_attachments_on_blob_id"
+ t.index ["record_type", "record_id", "name", "blob_id"], name: "index_active_storage_attachments_uniqueness", unique: true
+ end
+
+ create_table "active_storage_blobs", force: :cascade do |t|
+ t.bigint "byte_size", null: false
+ t.string "checksum"
+ t.string "content_type"
+ t.datetime "created_at", null: false
+ t.string "filename", null: false
+ t.string "key", null: false
+ t.text "metadata"
+ t.string "service_name", null: false
+ t.index ["key"], name: "index_active_storage_blobs_on_key", unique: true
+ end
+
+ create_table "active_storage_variant_records", force: :cascade do |t|
+ t.bigint "blob_id", null: false
+ t.string "variation_digest", null: false
+ t.index ["blob_id", "variation_digest"], name: "index_active_storage_variant_records_uniqueness", unique: true
+ end
+
+ create_table "bios", force: :cascade do |t|
+ t.string "age"
+ t.string "authorname"
+ t.text "biog"
+ t.datetime "created_at", null: false
+ t.text "interests"
+ t.text "pronouns"
+ t.datetime "updated_at", null: false
+ end
+
+ create_table "blogs", force: :cascade do |t|
+ t.datetime "created_at", null: false
+ t.integer "profile_id", null: false
+ t.string "title"
+ t.text "topic"
+ t.datetime "updated_at", null: false
+ t.index ["profile_id"], name: "index_blogs_on_profile_id"
+ end
+
+ create_table "miniblogs", force: :cascade do |t|
+ t.text "about"
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
+ end
+
+ create_table "miniposts", force: :cascade do |t|
+ t.text "body"
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
+ end
+
+ create_table "newstuffs", force: :cascade do |t|
+ t.datetime "created_at", null: false
+ t.text "newstuff"
+ t.datetime "updated_at", null: false
+ end
+
+ create_table "posts", force: :cascade do |t|
+ t.integer "blog_id", null: false
+ t.text "body"
+ t.datetime "created_at", null: false
+ t.string "mood"
+ t.text "music"
+ t.integer "post_id"
+ t.string "title"
+ t.datetime "updated_at", null: false
+ t.index ["blog_id"], name: "index_posts_on_blog_id"
+ end
+
+ create_table "profiles", force: :cascade do |t|
+ t.string "age"
+ t.text "bio"
+ t.datetime "created_at", null: false
+ t.text "interests"
+ t.string "name"
+ t.string "pronouns"
+ t.datetime "updated_at", null: false
+ t.integer "user_id", null: false
+ t.index ["user_id"], name: "index_profiles_on_user_id"
+ end
+
+ create_table "sessions", force: :cascade do |t|
+ t.datetime "created_at", null: false
+ t.string "ip_address"
+ t.datetime "updated_at", null: false
+ t.string "user_agent"
+ t.integer "user_id", null: false
+ t.index ["user_id"], name: "index_sessions_on_user_id"
+ end
+
+ create_table "site_reports", force: :cascade do |t|
+ t.text "body"
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
+ end
+
+ create_table "sitereports", force: :cascade do |t|
+ t.datetime "created_at", null: false
+ t.text "newshit"
+ t.datetime "updated_at", null: false
+ end
+
+ create_table "updates", force: :cascade do |t|
+ t.text "body"
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
+ end
+
+ create_table "users", force: :cascade do |t|
+ t.datetime "created_at", null: false
+ t.string "email_address", null: false
+ t.string "password_digest", null: false
+ t.datetime "updated_at", null: false
+ t.index ["email_address"], name: "index_users_on_email_address", unique: true
+ end
+
+ add_foreign_key "active_storage_attachments", "active_storage_blobs", column: "blob_id"
+ add_foreign_key "active_storage_variant_records", "active_storage_blobs", column: "blob_id"
+ add_foreign_key "blogs", "profiles"
+ add_foreign_key "posts", "blogs"
+ add_foreign_key "profiles", "users"
+ add_foreign_key "sessions", "users"
+end
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 0000000..e9d421b
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,13 @@
+services:
+ web:
+ build: .
+ restart: always
+ ports:
+ - "3032:3000"
+ environment:
+ - RAILS_ENV=production
+ volumes:
+ - sqlite_data:/rails/storage
+
+volumes:
+ sqlite_data:
diff --git a/lib/tasks/.keep b/lib/tasks/.keep
new file mode 100644
index 0000000..e69de29
diff --git a/log/.keep b/log/.keep
new file mode 100644
index 0000000..e69de29
diff --git a/public/400.html b/public/400.html
new file mode 100644
index 0000000..640de03
--- /dev/null
+++ b/public/400.html
@@ -0,0 +1,135 @@
+
+
+
+
+
+
+ The server cannot process the request due to a client error (400 Bad Request)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
The server cannot process the request due to a client error. Please check the request and try again. If you're the application owner check the logs for more information.
+
+
+
+
+
+
diff --git a/public/404.html b/public/404.html
new file mode 100644
index 0000000..d7f0f14
--- /dev/null
+++ b/public/404.html
@@ -0,0 +1,135 @@
+
+
+
+
+
+
+ The page you were looking for doesn't exist (404 Not found)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
The page you were looking for doesn't exist. You may have mistyped the address or the page may have moved. If you're the application owner check the logs for more information.
+
+
+
+
+
+
diff --git a/public/406-unsupported-browser.html b/public/406-unsupported-browser.html
new file mode 100644
index 0000000..43d2811
--- /dev/null
+++ b/public/406-unsupported-browser.html
@@ -0,0 +1,135 @@
+
+
+
+
+
+
+ Your browser is not supported (406 Not Acceptable)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Your browser is not supported. Please upgrade your browser to continue.
The change you wanted was rejected. Maybe you tried to change something you didn't have access to. If you're the application owner check the logs for more information.
Comments
+Add a comment:
+