Compare commits
23 commits
main
...
gitea-acti
Author | SHA1 | Date | |
---|---|---|---|
482ab7c877 | |||
eeeaf4b238 | |||
fcbbc0d0e8 | |||
2edcc17a7c | |||
2dbeb6c45c | |||
c9819bfa93 | |||
fa3db2e586 | |||
3ba6711cfe | |||
804d074c0b | |||
e19b71652d | |||
8bc962a6fe | |||
fc68fb41da | |||
80906614d5 | |||
c69301eb6c | |||
039583ac5c | |||
5054a28ed8 | |||
d3c6fac69b | |||
b0ec03f90d | |||
ad222c229e | |||
ce376c3a50 | |||
97728e4cff | |||
0aa6f8dc3e | |||
87b5350f1f |
83 changed files with 304 additions and 1672 deletions
|
@ -1,24 +0,0 @@
|
||||||
name: Deploy
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
tags:
|
|
||||||
- "**"
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
deploy:
|
|
||||||
runs-on: cth-ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Set up Docker Buildx
|
|
||||||
uses: docker/setup-buildx-action@v3
|
|
||||||
- name: Push image
|
|
||||||
uses: docker/build-push-action@v6
|
|
||||||
with:
|
|
||||||
push: true
|
|
||||||
tags: |
|
|
||||||
docker.atomaka.com/budget:latest
|
|
||||||
docker.atomaka.com/budget:${{gitea.sha}}
|
|
||||||
- name: Deploy to server
|
|
||||||
run: |
|
|
||||||
curl --oauth2-bearer ${{ secrets.WATCHTOWER_TOKEN }} \
|
|
||||||
${{ secrets.WATCHTOWER_HOST }}/v1/update?images=docker.atomaka.com/budget
|
|
|
@ -5,13 +5,19 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: cth-ubuntu-latest
|
runs-on: ruby-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: https://github.com/ruby/setup-ruby@v1
|
- name: Install Node
|
||||||
with:
|
run: |
|
||||||
ruby-version: 3.3.5
|
apt-get update
|
||||||
|
apt-get install git ca-certificates curl gnupg --yes
|
||||||
|
mkdir -p /etc/apt/keyrings
|
||||||
|
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
|
||||||
|
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list
|
||||||
|
apt-get update
|
||||||
|
apt-get install -y nodejs
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/cache@v4
|
- uses: actions/cache@v2
|
||||||
with:
|
with:
|
||||||
path: vendor/bundle
|
path: vendor/bundle
|
||||||
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
|
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
|
||||||
|
@ -24,9 +30,7 @@ jobs:
|
||||||
- name: autoload
|
- name: autoload
|
||||||
run: bin/rails zeitwerk:check
|
run: bin/rails zeitwerk:check
|
||||||
- name: lint
|
- name: lint
|
||||||
run: bin/rubocop
|
run: bin/bundle exec standardrb
|
||||||
- name: security
|
|
||||||
run: bin/brakeman
|
|
||||||
- name: test
|
- name: test
|
||||||
run: |
|
run: |
|
||||||
bin/rails assets:precompile
|
bin/rails assets:precompile
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
# Omakase Ruby styling for Rails
|
|
||||||
inherit_gem:
|
|
||||||
rubocop-rails-omakase: rubocop.yml
|
|
||||||
|
|
||||||
# Your own specialized rules go here
|
|
|
@ -1 +1 @@
|
||||||
3.3.5
|
3.3.1
|
||||||
|
|
40
Dockerfile
40
Dockerfile
|
@ -1,36 +1,25 @@
|
||||||
# syntax = docker/dockerfile:1
|
# syntax = docker/dockerfile:1
|
||||||
|
|
||||||
# This Dockerfile is designed for production, not development. Use with Kamal or build'n'run by hand:
|
# Make sure RUBY_VERSION matches the Ruby version in .ruby-version and Gemfile
|
||||||
# docker build -t my-app .
|
ARG RUBY_VERSION=3.2.2
|
||||||
# docker run -d -p 80:80 -p 443:443 --name my-app -e RAILS_MASTER_KEY=<value from config/master.key> my-app
|
FROM registry.docker.com/library/ruby:$RUBY_VERSION-slim as base
|
||||||
|
|
||||||
# For a containerized dev environment, see Dev Containers: https://guides.rubyonrails.org/getting_started_with_devcontainer.html
|
|
||||||
|
|
||||||
# Make sure RUBY_VERSION matches the Ruby version in .ruby-version
|
|
||||||
ARG RUBY_VERSION=3.3.1
|
|
||||||
FROM docker.io/library/ruby:$RUBY_VERSION-slim AS base
|
|
||||||
|
|
||||||
# Rails app lives here
|
# Rails app lives here
|
||||||
WORKDIR /rails
|
WORKDIR /rails
|
||||||
|
|
||||||
# Install base packages
|
|
||||||
RUN apt-get update -qq && \
|
|
||||||
apt-get install --no-install-recommends -y curl libjemalloc2 libsqlite3-0 libvips && \
|
|
||||||
rm -rf /var/lib/apt/lists /var/cache/apt/archives
|
|
||||||
|
|
||||||
# Set production environment
|
# Set production environment
|
||||||
ENV RAILS_ENV="production" \
|
ENV RAILS_ENV="production" \
|
||||||
BUNDLE_DEPLOYMENT="1" \
|
BUNDLE_DEPLOYMENT="1" \
|
||||||
BUNDLE_PATH="/usr/local/bundle" \
|
BUNDLE_PATH="/usr/local/bundle" \
|
||||||
BUNDLE_WITHOUT="development"
|
BUNDLE_WITHOUT="development"
|
||||||
|
|
||||||
|
|
||||||
# Throw-away build stage to reduce size of final image
|
# Throw-away build stage to reduce size of final image
|
||||||
FROM base AS build
|
FROM base as build
|
||||||
|
|
||||||
# Install packages needed to build gems
|
# Install packages needed to build gems
|
||||||
RUN apt-get update -qq && \
|
RUN apt-get update -qq && \
|
||||||
apt-get install --no-install-recommends -y build-essential git pkg-config && \
|
apt-get install --no-install-recommends -y build-essential git libvips pkg-config
|
||||||
rm -rf /var/lib/apt/lists /var/cache/apt/archives
|
|
||||||
|
|
||||||
# Install application gems
|
# Install application gems
|
||||||
COPY Gemfile Gemfile.lock ./
|
COPY Gemfile Gemfile.lock ./
|
||||||
|
@ -38,6 +27,7 @@ RUN bundle install && \
|
||||||
rm -rf ~/.bundle/ "${BUNDLE_PATH}"/ruby/*/cache "${BUNDLE_PATH}"/ruby/*/bundler/gems/*/.git && \
|
rm -rf ~/.bundle/ "${BUNDLE_PATH}"/ruby/*/cache "${BUNDLE_PATH}"/ruby/*/bundler/gems/*/.git && \
|
||||||
bundle exec bootsnap precompile --gemfile
|
bundle exec bootsnap precompile --gemfile
|
||||||
|
|
||||||
|
|
||||||
# Copy application code
|
# Copy application code
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
|
@ -48,20 +38,24 @@ RUN bundle exec bootsnap precompile app/ lib/
|
||||||
RUN SECRET_KEY_BASE_DUMMY=1 ./bin/rails assets:precompile
|
RUN SECRET_KEY_BASE_DUMMY=1 ./bin/rails assets:precompile
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Final stage for app image
|
# Final stage for app image
|
||||||
FROM base
|
FROM base
|
||||||
|
|
||||||
|
# Install packages needed for deployment
|
||||||
|
RUN apt-get update -qq && \
|
||||||
|
apt-get install --no-install-recommends -y curl libsqlite3-0 libvips libjemalloc2 && \
|
||||||
|
rm -rf /var/lib/apt/lists /var/cache/apt/archives
|
||||||
|
|
||||||
# Copy built artifacts: gems, application
|
# Copy built artifacts: gems, application
|
||||||
COPY --from=build "${BUNDLE_PATH}" "${BUNDLE_PATH}"
|
COPY --from=build /usr/local/bundle /usr/local/bundle
|
||||||
COPY --from=build /rails /rails
|
COPY --from=build /rails /rails
|
||||||
|
|
||||||
# Run and own only the runtime files as a non-root user for security
|
# Run and own only the runtime files as a non-root user for security
|
||||||
RUN groupadd --system --gid 1000 rails && \
|
RUN useradd rails --create-home --shell /bin/bash && \
|
||||||
useradd rails --uid 1000 --gid 1000 --create-home --shell /bin/bash && \
|
|
||||||
chown -R rails:rails db log storage tmp
|
chown -R rails:rails db log storage tmp
|
||||||
USER 1000:1000
|
USER rails:rails
|
||||||
|
|
||||||
|
ENV LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libjemalloc.so.2
|
||||||
|
|
||||||
# Entrypoint prepares the database.
|
# Entrypoint prepares the database.
|
||||||
ENTRYPOINT ["/rails/bin/docker-entrypoint"]
|
ENTRYPOINT ["/rails/bin/docker-entrypoint"]
|
||||||
|
|
48
Gemfile
48
Gemfile
|
@ -1,64 +1,32 @@
|
||||||
source "https://rubygems.org"
|
source "https://rubygems.org"
|
||||||
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
||||||
|
|
||||||
gem "rails", github: "rails/rails", branch: "main"
|
gem "rails", "7.1.3.2"
|
||||||
# The modern asset pipeline for Rails [https://github.com/rails/propshaft]
|
gem "sprockets-rails"
|
||||||
gem "propshaft"
|
gem "sqlite3", "< 2"
|
||||||
# Use sqlite3 as the database for Active Record
|
gem "puma"
|
||||||
gem "sqlite3", ">= 1.4"
|
|
||||||
# Use the Puma web server [https://github.com/puma/puma]
|
|
||||||
gem "puma", ">= 5.0"
|
|
||||||
# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
|
|
||||||
gem "importmap-rails"
|
gem "importmap-rails"
|
||||||
# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
|
|
||||||
gem "turbo-rails"
|
gem "turbo-rails"
|
||||||
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
|
|
||||||
gem "stimulus-rails"
|
gem "stimulus-rails"
|
||||||
# Build JSON APIs with ease [https://github.com/rails/jbuilder]
|
|
||||||
gem "jbuilder"
|
gem "jbuilder"
|
||||||
# Use Redis adapter to run Action Cable in production
|
|
||||||
# gem "redis", ">= 4.0.1"
|
|
||||||
|
|
||||||
gem "solid_cache"
|
|
||||||
gem "solid_queue"
|
|
||||||
|
|
||||||
# Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
|
|
||||||
# gem "kredis"
|
|
||||||
|
|
||||||
# Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
|
|
||||||
gem "bcrypt"
|
|
||||||
|
|
||||||
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
|
||||||
gem "tzinfo-data", platforms: %i[ windows jruby ]
|
|
||||||
|
|
||||||
# Reduces boot times through caching; required in config/boot.rb
|
|
||||||
gem "bootsnap", require: false
|
gem "bootsnap", require: false
|
||||||
|
|
||||||
# Deploy this application anywhere as a Docker container [https://kamal-deploy.org]
|
|
||||||
# gem "kamal", require: false
|
|
||||||
|
|
||||||
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
|
|
||||||
# gem "image_processing", "~> 1.2"
|
# gem "image_processing", "~> 1.2"
|
||||||
|
|
||||||
group :development, :test do
|
group :development, :test do
|
||||||
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
|
gem "debug", platforms: %i[mri mingw x64_mingw]
|
||||||
gem "debug", platforms: %i[ mri windows ], require: "debug/prelude"
|
|
||||||
|
|
||||||
# Static analysis for security vulnerabilities [https://brakemanscanner.org/]
|
|
||||||
gem "brakeman", require: false
|
|
||||||
|
|
||||||
# Omakase Ruby styling [https://github.com/rails/rubocop-rails-omakase/]
|
|
||||||
gem "rubocop-rails-omakase", require: false
|
|
||||||
end
|
end
|
||||||
|
|
||||||
group :development do
|
group :development do
|
||||||
# Use console on exceptions pages [https://github.com/rails/web-console]
|
gem "standard"
|
||||||
gem "web-console"
|
gem "web-console"
|
||||||
end
|
end
|
||||||
|
|
||||||
group :test do
|
group :test do
|
||||||
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
|
|
||||||
gem "capybara"
|
gem "capybara"
|
||||||
gem "selenium-webdriver"
|
gem "selenium-webdriver"
|
||||||
|
gem "webdrivers"
|
||||||
end
|
end
|
||||||
|
|
||||||
gem "tailwindcss-rails", "~> 2.0"
|
gem "tailwindcss-rails", "~> 2.0"
|
||||||
|
|
349
Gemfile.lock
349
Gemfile.lock
|
@ -1,118 +1,89 @@
|
||||||
GIT
|
GEM
|
||||||
remote: https://github.com/rails/rails.git
|
remote: https://rubygems.org/
|
||||||
revision: 68714ea8c8dc259d71dc1fc76a7202a483af18c7
|
|
||||||
branch: main
|
|
||||||
specs:
|
specs:
|
||||||
actioncable (8.1.0.alpha)
|
actioncable (7.1.3.2)
|
||||||
actionpack (= 8.1.0.alpha)
|
actionpack (= 7.1.3.2)
|
||||||
activesupport (= 8.1.0.alpha)
|
activesupport (= 7.1.3.2)
|
||||||
nio4r (~> 2.0)
|
nio4r (~> 2.0)
|
||||||
websocket-driver (>= 0.6.1)
|
websocket-driver (>= 0.6.1)
|
||||||
zeitwerk (~> 2.6)
|
zeitwerk (~> 2.6)
|
||||||
actionmailbox (8.1.0.alpha)
|
actionmailbox (7.1.3.2)
|
||||||
actionpack (= 8.1.0.alpha)
|
actionpack (= 7.1.3.2)
|
||||||
activejob (= 8.1.0.alpha)
|
activejob (= 7.1.3.2)
|
||||||
activerecord (= 8.1.0.alpha)
|
activerecord (= 7.1.3.2)
|
||||||
activestorage (= 8.1.0.alpha)
|
activestorage (= 7.1.3.2)
|
||||||
activesupport (= 8.1.0.alpha)
|
activesupport (= 7.1.3.2)
|
||||||
mail (>= 2.8.0)
|
mail (>= 2.7.1)
|
||||||
actionmailer (8.1.0.alpha)
|
net-imap
|
||||||
actionpack (= 8.1.0.alpha)
|
net-pop
|
||||||
actionview (= 8.1.0.alpha)
|
net-smtp
|
||||||
activejob (= 8.1.0.alpha)
|
actionmailer (7.1.3.2)
|
||||||
activesupport (= 8.1.0.alpha)
|
actionpack (= 7.1.3.2)
|
||||||
mail (>= 2.8.0)
|
actionview (= 7.1.3.2)
|
||||||
|
activejob (= 7.1.3.2)
|
||||||
|
activesupport (= 7.1.3.2)
|
||||||
|
mail (~> 2.5, >= 2.5.4)
|
||||||
|
net-imap
|
||||||
|
net-pop
|
||||||
|
net-smtp
|
||||||
rails-dom-testing (~> 2.2)
|
rails-dom-testing (~> 2.2)
|
||||||
actionpack (8.1.0.alpha)
|
actionpack (7.1.3.2)
|
||||||
actionview (= 8.1.0.alpha)
|
actionview (= 7.1.3.2)
|
||||||
activesupport (= 8.1.0.alpha)
|
activesupport (= 7.1.3.2)
|
||||||
nokogiri (>= 1.8.5)
|
nokogiri (>= 1.8.5)
|
||||||
|
racc
|
||||||
rack (>= 2.2.4)
|
rack (>= 2.2.4)
|
||||||
rack-session (>= 1.0.1)
|
rack-session (>= 1.0.1)
|
||||||
rack-test (>= 0.6.3)
|
rack-test (>= 0.6.3)
|
||||||
rails-dom-testing (~> 2.2)
|
rails-dom-testing (~> 2.2)
|
||||||
rails-html-sanitizer (~> 1.6)
|
rails-html-sanitizer (~> 1.6)
|
||||||
useragent (~> 0.16)
|
actiontext (7.1.3.2)
|
||||||
actiontext (8.1.0.alpha)
|
actionpack (= 7.1.3.2)
|
||||||
actionpack (= 8.1.0.alpha)
|
activerecord (= 7.1.3.2)
|
||||||
activerecord (= 8.1.0.alpha)
|
activestorage (= 7.1.3.2)
|
||||||
activestorage (= 8.1.0.alpha)
|
activesupport (= 7.1.3.2)
|
||||||
activesupport (= 8.1.0.alpha)
|
|
||||||
globalid (>= 0.6.0)
|
globalid (>= 0.6.0)
|
||||||
nokogiri (>= 1.8.5)
|
nokogiri (>= 1.8.5)
|
||||||
actionview (8.1.0.alpha)
|
actionview (7.1.3.2)
|
||||||
activesupport (= 8.1.0.alpha)
|
activesupport (= 7.1.3.2)
|
||||||
builder (~> 3.1)
|
builder (~> 3.1)
|
||||||
erubi (~> 1.11)
|
erubi (~> 1.11)
|
||||||
rails-dom-testing (~> 2.2)
|
rails-dom-testing (~> 2.2)
|
||||||
rails-html-sanitizer (~> 1.6)
|
rails-html-sanitizer (~> 1.6)
|
||||||
activejob (8.1.0.alpha)
|
activejob (7.1.3.2)
|
||||||
activesupport (= 8.1.0.alpha)
|
activesupport (= 7.1.3.2)
|
||||||
globalid (>= 0.3.6)
|
globalid (>= 0.3.6)
|
||||||
activemodel (8.1.0.alpha)
|
activemodel (7.1.3.2)
|
||||||
activesupport (= 8.1.0.alpha)
|
activesupport (= 7.1.3.2)
|
||||||
activerecord (8.1.0.alpha)
|
activerecord (7.1.3.2)
|
||||||
activemodel (= 8.1.0.alpha)
|
activemodel (= 7.1.3.2)
|
||||||
activesupport (= 8.1.0.alpha)
|
activesupport (= 7.1.3.2)
|
||||||
timeout (>= 0.4.0)
|
timeout (>= 0.4.0)
|
||||||
activestorage (8.1.0.alpha)
|
activestorage (7.1.3.2)
|
||||||
actionpack (= 8.1.0.alpha)
|
actionpack (= 7.1.3.2)
|
||||||
activejob (= 8.1.0.alpha)
|
activejob (= 7.1.3.2)
|
||||||
activerecord (= 8.1.0.alpha)
|
activerecord (= 7.1.3.2)
|
||||||
activesupport (= 8.1.0.alpha)
|
activesupport (= 7.1.3.2)
|
||||||
marcel (~> 1.0)
|
marcel (~> 1.0)
|
||||||
activesupport (8.1.0.alpha)
|
activesupport (7.1.3.2)
|
||||||
base64
|
base64
|
||||||
benchmark (>= 0.3)
|
|
||||||
bigdecimal
|
bigdecimal
|
||||||
concurrent-ruby (~> 1.0, >= 1.3.1)
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||||
connection_pool (>= 2.2.5)
|
connection_pool (>= 2.2.5)
|
||||||
drb
|
drb
|
||||||
i18n (>= 1.6, < 2)
|
i18n (>= 1.6, < 2)
|
||||||
logger (>= 1.4.2)
|
|
||||||
minitest (>= 5.1)
|
minitest (>= 5.1)
|
||||||
securerandom (>= 0.3)
|
mutex_m
|
||||||
tzinfo (~> 2.0, >= 2.0.5)
|
tzinfo (~> 2.0)
|
||||||
uri (>= 0.13.1)
|
addressable (2.8.6)
|
||||||
rails (8.1.0.alpha)
|
public_suffix (>= 2.0.2, < 6.0)
|
||||||
actioncable (= 8.1.0.alpha)
|
|
||||||
actionmailbox (= 8.1.0.alpha)
|
|
||||||
actionmailer (= 8.1.0.alpha)
|
|
||||||
actionpack (= 8.1.0.alpha)
|
|
||||||
actiontext (= 8.1.0.alpha)
|
|
||||||
actionview (= 8.1.0.alpha)
|
|
||||||
activejob (= 8.1.0.alpha)
|
|
||||||
activemodel (= 8.1.0.alpha)
|
|
||||||
activerecord (= 8.1.0.alpha)
|
|
||||||
activestorage (= 8.1.0.alpha)
|
|
||||||
activesupport (= 8.1.0.alpha)
|
|
||||||
bundler (>= 1.15.0)
|
|
||||||
railties (= 8.1.0.alpha)
|
|
||||||
railties (8.1.0.alpha)
|
|
||||||
actionpack (= 8.1.0.alpha)
|
|
||||||
activesupport (= 8.1.0.alpha)
|
|
||||||
irb (~> 1.13)
|
|
||||||
rackup (>= 1.0.0)
|
|
||||||
rake (>= 12.2)
|
|
||||||
thor (~> 1.0, >= 1.2.2)
|
|
||||||
zeitwerk (~> 2.6)
|
|
||||||
|
|
||||||
GEM
|
|
||||||
remote: https://rubygems.org/
|
|
||||||
specs:
|
|
||||||
addressable (2.8.7)
|
|
||||||
public_suffix (>= 2.0.2, < 7.0)
|
|
||||||
ast (2.4.2)
|
ast (2.4.2)
|
||||||
base64 (0.2.0)
|
base64 (0.2.0)
|
||||||
bcrypt (3.1.20)
|
bigdecimal (3.1.7)
|
||||||
benchmark (0.3.0)
|
|
||||||
bigdecimal (3.1.8)
|
|
||||||
bindex (0.8.1)
|
bindex (0.8.1)
|
||||||
bootsnap (1.18.4)
|
bootsnap (1.18.3)
|
||||||
msgpack (~> 1.2)
|
msgpack (~> 1.2)
|
||||||
brakeman (6.2.2)
|
builder (3.2.4)
|
||||||
racc
|
|
||||||
builder (3.3.0)
|
|
||||||
capybara (3.40.0)
|
capybara (3.40.0)
|
||||||
addressable
|
addressable
|
||||||
matrix
|
matrix
|
||||||
|
@ -122,7 +93,7 @@ GEM
|
||||||
rack-test (>= 0.6.3)
|
rack-test (>= 0.6.3)
|
||||||
regexp_parser (>= 1.5, < 3.0)
|
regexp_parser (>= 1.5, < 3.0)
|
||||||
xpath (~> 3.2)
|
xpath (~> 3.2)
|
||||||
concurrent-ruby (1.3.4)
|
concurrent-ruby (1.2.3)
|
||||||
connection_pool (2.4.1)
|
connection_pool (2.4.1)
|
||||||
crass (1.0.6)
|
crass (1.0.6)
|
||||||
date (3.3.4)
|
date (3.3.4)
|
||||||
|
@ -130,31 +101,26 @@ GEM
|
||||||
irb (~> 1.10)
|
irb (~> 1.10)
|
||||||
reline (>= 0.3.8)
|
reline (>= 0.3.8)
|
||||||
drb (2.2.1)
|
drb (2.2.1)
|
||||||
erubi (1.13.0)
|
erubi (1.12.0)
|
||||||
et-orbi (1.2.11)
|
|
||||||
tzinfo
|
|
||||||
fugit (1.11.1)
|
|
||||||
et-orbi (~> 1, >= 1.2.11)
|
|
||||||
raabro (~> 1.4)
|
|
||||||
globalid (1.2.1)
|
globalid (1.2.1)
|
||||||
activesupport (>= 6.1)
|
activesupport (>= 6.1)
|
||||||
i18n (1.14.6)
|
i18n (1.14.4)
|
||||||
concurrent-ruby (~> 1.0)
|
concurrent-ruby (~> 1.0)
|
||||||
importmap-rails (2.0.3)
|
importmap-rails (2.0.1)
|
||||||
actionpack (>= 6.0.0)
|
actionpack (>= 6.0.0)
|
||||||
activesupport (>= 6.0.0)
|
activesupport (>= 6.0.0)
|
||||||
railties (>= 6.0.0)
|
railties (>= 6.0.0)
|
||||||
io-console (0.7.2)
|
io-console (0.7.2)
|
||||||
irb (1.14.1)
|
irb (1.12.0)
|
||||||
rdoc (>= 4.0.0)
|
rdoc
|
||||||
reline (>= 0.4.2)
|
reline (>= 0.4.2)
|
||||||
jbuilder (2.13.0)
|
jbuilder (2.11.5)
|
||||||
actionview (>= 5.0.0)
|
actionview (>= 5.0.0)
|
||||||
activesupport (>= 5.0.0)
|
activesupport (>= 5.0.0)
|
||||||
json (2.7.4)
|
json (2.7.2)
|
||||||
language_server-protocol (3.17.0.3)
|
language_server-protocol (3.17.0.3)
|
||||||
logger (1.6.1)
|
lint_roller (1.1.0)
|
||||||
loofah (2.23.1)
|
loofah (2.22.0)
|
||||||
crass (~> 1.0.2)
|
crass (~> 1.0.2)
|
||||||
nokogiri (>= 1.12.0)
|
nokogiri (>= 1.12.0)
|
||||||
mail (2.8.1)
|
mail (2.8.1)
|
||||||
|
@ -165,9 +131,10 @@ GEM
|
||||||
marcel (1.0.4)
|
marcel (1.0.4)
|
||||||
matrix (0.4.2)
|
matrix (0.4.2)
|
||||||
mini_mime (1.1.5)
|
mini_mime (1.1.5)
|
||||||
minitest (5.25.1)
|
minitest (5.22.3)
|
||||||
msgpack (1.7.3)
|
msgpack (1.7.2)
|
||||||
net-imap (0.5.0)
|
mutex_m (0.2.0)
|
||||||
|
net-imap (0.4.10)
|
||||||
date
|
date
|
||||||
net-protocol
|
net-protocol
|
||||||
net-pop (0.1.2)
|
net-pop (0.1.2)
|
||||||
|
@ -176,30 +143,22 @@ GEM
|
||||||
timeout
|
timeout
|
||||||
net-smtp (0.5.0)
|
net-smtp (0.5.0)
|
||||||
net-protocol
|
net-protocol
|
||||||
nio4r (2.7.3)
|
nio4r (2.7.1)
|
||||||
nokogiri (1.16.7-aarch64-linux)
|
nokogiri (1.16.4-arm64-darwin)
|
||||||
racc (~> 1.4)
|
racc (~> 1.4)
|
||||||
nokogiri (1.16.7-arm64-darwin)
|
nokogiri (1.16.4-x86_64-linux)
|
||||||
racc (~> 1.4)
|
racc (~> 1.4)
|
||||||
nokogiri (1.16.7-x86_64-linux)
|
parallel (1.24.0)
|
||||||
racc (~> 1.4)
|
parser (3.3.0.5)
|
||||||
parallel (1.26.3)
|
|
||||||
parser (3.3.5.0)
|
|
||||||
ast (~> 2.4.1)
|
ast (~> 2.4.1)
|
||||||
racc
|
racc
|
||||||
propshaft (1.1.0)
|
|
||||||
actionpack (>= 7.0.0)
|
|
||||||
activesupport (>= 7.0.0)
|
|
||||||
rack
|
|
||||||
railties (>= 7.0.0)
|
|
||||||
psych (5.1.2)
|
psych (5.1.2)
|
||||||
stringio
|
stringio
|
||||||
public_suffix (6.0.1)
|
public_suffix (5.0.5)
|
||||||
puma (6.4.3)
|
puma (6.4.2)
|
||||||
nio4r (~> 2.0)
|
nio4r (~> 2.0)
|
||||||
raabro (1.4.0)
|
racc (1.7.3)
|
||||||
racc (1.8.1)
|
rack (3.0.10)
|
||||||
rack (3.1.8)
|
|
||||||
rack-session (2.0.0)
|
rack-session (2.0.0)
|
||||||
rack (>= 3.0.0)
|
rack (>= 3.0.0)
|
||||||
rack-test (2.1.0)
|
rack-test (2.1.0)
|
||||||
|
@ -207,6 +166,20 @@ GEM
|
||||||
rackup (2.1.0)
|
rackup (2.1.0)
|
||||||
rack (>= 3)
|
rack (>= 3)
|
||||||
webrick (~> 1.8)
|
webrick (~> 1.8)
|
||||||
|
rails (7.1.3.2)
|
||||||
|
actioncable (= 7.1.3.2)
|
||||||
|
actionmailbox (= 7.1.3.2)
|
||||||
|
actionmailer (= 7.1.3.2)
|
||||||
|
actionpack (= 7.1.3.2)
|
||||||
|
actiontext (= 7.1.3.2)
|
||||||
|
actionview (= 7.1.3.2)
|
||||||
|
activejob (= 7.1.3.2)
|
||||||
|
activemodel (= 7.1.3.2)
|
||||||
|
activerecord (= 7.1.3.2)
|
||||||
|
activestorage (= 7.1.3.2)
|
||||||
|
activesupport (= 7.1.3.2)
|
||||||
|
bundler (>= 1.15.0)
|
||||||
|
railties (= 7.1.3.2)
|
||||||
rails-dom-testing (2.2.0)
|
rails-dom-testing (2.2.0)
|
||||||
activesupport (>= 5.0.0)
|
activesupport (>= 5.0.0)
|
||||||
minitest
|
minitest
|
||||||
|
@ -214,124 +187,120 @@ GEM
|
||||||
rails-html-sanitizer (1.6.0)
|
rails-html-sanitizer (1.6.0)
|
||||||
loofah (~> 2.21)
|
loofah (~> 2.21)
|
||||||
nokogiri (~> 1.14)
|
nokogiri (~> 1.14)
|
||||||
|
railties (7.1.3.2)
|
||||||
|
actionpack (= 7.1.3.2)
|
||||||
|
activesupport (= 7.1.3.2)
|
||||||
|
irb
|
||||||
|
rackup (>= 1.0.0)
|
||||||
|
rake (>= 12.2)
|
||||||
|
thor (~> 1.0, >= 1.2.2)
|
||||||
|
zeitwerk (~> 2.6)
|
||||||
rainbow (3.1.1)
|
rainbow (3.1.1)
|
||||||
rake (13.2.1)
|
rake (13.2.1)
|
||||||
rdoc (6.7.0)
|
rdoc (6.6.3.1)
|
||||||
psych (>= 4.0.0)
|
psych (>= 4.0.0)
|
||||||
regexp_parser (2.9.2)
|
regexp_parser (2.9.0)
|
||||||
reline (0.5.10)
|
reline (0.5.2)
|
||||||
io-console (~> 0.5)
|
io-console (~> 0.5)
|
||||||
rexml (3.3.9)
|
rexml (3.2.6)
|
||||||
rubocop (1.67.0)
|
rubocop (1.62.1)
|
||||||
json (~> 2.3)
|
json (~> 2.3)
|
||||||
language_server-protocol (>= 3.17.0)
|
language_server-protocol (>= 3.17.0)
|
||||||
parallel (~> 1.10)
|
parallel (~> 1.10)
|
||||||
parser (>= 3.3.0.2)
|
parser (>= 3.3.0.2)
|
||||||
rainbow (>= 2.2.2, < 4.0)
|
rainbow (>= 2.2.2, < 4.0)
|
||||||
regexp_parser (>= 2.4, < 3.0)
|
regexp_parser (>= 1.8, < 3.0)
|
||||||
rubocop-ast (>= 1.32.2, < 2.0)
|
rexml (>= 3.2.5, < 4.0)
|
||||||
|
rubocop-ast (>= 1.31.1, < 2.0)
|
||||||
ruby-progressbar (~> 1.7)
|
ruby-progressbar (~> 1.7)
|
||||||
unicode-display_width (>= 2.4.0, < 3.0)
|
unicode-display_width (>= 2.4.0, < 3.0)
|
||||||
rubocop-ast (1.32.3)
|
rubocop-ast (1.31.2)
|
||||||
parser (>= 3.3.1.0)
|
parser (>= 3.3.0.4)
|
||||||
rubocop-minitest (0.36.0)
|
rubocop-performance (1.20.2)
|
||||||
rubocop (>= 1.61, < 2.0)
|
|
||||||
rubocop-ast (>= 1.31.1, < 2.0)
|
|
||||||
rubocop-performance (1.22.1)
|
|
||||||
rubocop (>= 1.48.1, < 2.0)
|
rubocop (>= 1.48.1, < 2.0)
|
||||||
rubocop-ast (>= 1.31.1, < 2.0)
|
rubocop-ast (>= 1.30.0, < 2.0)
|
||||||
rubocop-rails (2.26.2)
|
|
||||||
activesupport (>= 4.2.0)
|
|
||||||
rack (>= 1.1)
|
|
||||||
rubocop (>= 1.52.0, < 2.0)
|
|
||||||
rubocop-ast (>= 1.31.1, < 2.0)
|
|
||||||
rubocop-rails-omakase (1.0.0)
|
|
||||||
rubocop
|
|
||||||
rubocop-minitest
|
|
||||||
rubocop-performance
|
|
||||||
rubocop-rails
|
|
||||||
ruby-progressbar (1.13.0)
|
ruby-progressbar (1.13.0)
|
||||||
rubyzip (2.3.2)
|
rubyzip (2.3.2)
|
||||||
securerandom (0.3.1)
|
selenium-webdriver (4.10.0)
|
||||||
selenium-webdriver (4.25.0)
|
|
||||||
base64 (~> 0.2)
|
|
||||||
logger (~> 1.4)
|
|
||||||
rexml (~> 3.2, >= 3.2.5)
|
rexml (~> 3.2, >= 3.2.5)
|
||||||
rubyzip (>= 1.2.2, < 3.0)
|
rubyzip (>= 1.2.2, < 3.0)
|
||||||
websocket (~> 1.0)
|
websocket (~> 1.0)
|
||||||
solid_cache (1.0.6)
|
sprockets (4.2.1)
|
||||||
activejob (>= 7.2)
|
concurrent-ruby (~> 1.0)
|
||||||
activerecord (>= 7.2)
|
rack (>= 2.2.4, < 4)
|
||||||
railties (>= 7.2)
|
sprockets-rails (3.4.2)
|
||||||
solid_queue (1.0.0)
|
actionpack (>= 5.2)
|
||||||
activejob (>= 7.1)
|
activesupport (>= 5.2)
|
||||||
activerecord (>= 7.1)
|
sprockets (>= 3.0.0)
|
||||||
concurrent-ruby (>= 1.3.1)
|
sqlite3 (1.7.3-arm64-darwin)
|
||||||
fugit (~> 1.11.0)
|
sqlite3 (1.7.3-x86_64-linux)
|
||||||
railties (>= 7.1)
|
standard (1.35.1)
|
||||||
thor (~> 1.3.1)
|
language_server-protocol (~> 3.17.0.2)
|
||||||
sqlite3 (2.1.1-aarch64-linux-gnu)
|
lint_roller (~> 1.0)
|
||||||
sqlite3 (2.1.1-arm64-darwin)
|
rubocop (~> 1.62.0)
|
||||||
sqlite3 (2.1.1-x86_64-linux-gnu)
|
standard-custom (~> 1.0.0)
|
||||||
stimulus-rails (1.3.4)
|
standard-performance (~> 1.3)
|
||||||
|
standard-custom (1.0.2)
|
||||||
|
lint_roller (~> 1.0)
|
||||||
|
rubocop (~> 1.50)
|
||||||
|
standard-performance (1.3.1)
|
||||||
|
lint_roller (~> 1.1)
|
||||||
|
rubocop-performance (~> 1.20.2)
|
||||||
|
stimulus-rails (1.3.3)
|
||||||
railties (>= 6.0.0)
|
railties (>= 6.0.0)
|
||||||
stringio (3.1.1)
|
stringio (3.1.0)
|
||||||
tailwindcss-rails (2.7.9-aarch64-linux)
|
tailwindcss-rails (2.4.0-arm64-darwin)
|
||||||
railties (>= 7.0.0)
|
railties (>= 6.0.0)
|
||||||
tailwindcss-rails (2.7.9-arm64-darwin)
|
tailwindcss-rails (2.4.0-x86_64-linux)
|
||||||
railties (>= 7.0.0)
|
railties (>= 6.0.0)
|
||||||
tailwindcss-rails (2.7.9-x86_64-linux)
|
thor (1.3.1)
|
||||||
railties (>= 7.0.0)
|
|
||||||
thor (1.3.2)
|
|
||||||
timeout (0.4.1)
|
timeout (0.4.1)
|
||||||
turbo-rails (2.0.11)
|
turbo-rails (2.0.5)
|
||||||
actionpack (>= 6.0.0)
|
actionpack (>= 6.0.0)
|
||||||
|
activejob (>= 6.0.0)
|
||||||
railties (>= 6.0.0)
|
railties (>= 6.0.0)
|
||||||
tzinfo (2.0.6)
|
tzinfo (2.0.6)
|
||||||
concurrent-ruby (~> 1.0)
|
concurrent-ruby (~> 1.0)
|
||||||
unicode-display_width (2.6.0)
|
unicode-display_width (2.5.0)
|
||||||
uri (0.13.1)
|
|
||||||
useragent (0.16.10)
|
|
||||||
web-console (4.2.1)
|
web-console (4.2.1)
|
||||||
actionview (>= 6.0.0)
|
actionview (>= 6.0.0)
|
||||||
activemodel (>= 6.0.0)
|
activemodel (>= 6.0.0)
|
||||||
bindex (>= 0.4.0)
|
bindex (>= 0.4.0)
|
||||||
railties (>= 6.0.0)
|
railties (>= 6.0.0)
|
||||||
webrick (1.8.2)
|
webdrivers (5.3.1)
|
||||||
websocket (1.2.11)
|
nokogiri (~> 1.6)
|
||||||
|
rubyzip (>= 1.3.0)
|
||||||
|
selenium-webdriver (~> 4.0, < 4.11)
|
||||||
|
webrick (1.8.1)
|
||||||
|
websocket (1.2.10)
|
||||||
websocket-driver (0.7.6)
|
websocket-driver (0.7.6)
|
||||||
websocket-extensions (>= 0.1.0)
|
websocket-extensions (>= 0.1.0)
|
||||||
websocket-extensions (0.1.5)
|
websocket-extensions (0.1.5)
|
||||||
xpath (3.2.0)
|
xpath (3.2.0)
|
||||||
nokogiri (~> 1.8)
|
nokogiri (~> 1.8)
|
||||||
zeitwerk (2.7.1)
|
zeitwerk (2.6.13)
|
||||||
|
|
||||||
PLATFORMS
|
PLATFORMS
|
||||||
aarch64-linux
|
|
||||||
arm64-darwin-23
|
arm64-darwin-23
|
||||||
x86_64-linux
|
x86_64-linux
|
||||||
|
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
bcrypt
|
|
||||||
bootsnap
|
bootsnap
|
||||||
brakeman
|
|
||||||
capybara
|
capybara
|
||||||
debug
|
debug
|
||||||
importmap-rails
|
importmap-rails
|
||||||
jbuilder
|
jbuilder
|
||||||
propshaft
|
puma
|
||||||
puma (>= 5.0)
|
rails (= 7.1.3.2)
|
||||||
rails!
|
|
||||||
rubocop-rails-omakase
|
|
||||||
selenium-webdriver
|
selenium-webdriver
|
||||||
solid_cache
|
sprockets-rails
|
||||||
solid_queue
|
sqlite3 (< 2)
|
||||||
sqlite3 (>= 1.4)
|
standard
|
||||||
stimulus-rails
|
stimulus-rails
|
||||||
tailwindcss-rails (~> 2.0)
|
tailwindcss-rails (~> 2.0)
|
||||||
turbo-rails
|
turbo-rails
|
||||||
tzinfo-data
|
|
||||||
web-console
|
web-console
|
||||||
|
webdrivers
|
||||||
|
|
||||||
BUNDLED WITH
|
BUNDLED WITH
|
||||||
2.5.18
|
2.5.9
|
||||||
|
|
5
app/assets/config/manifest.js
Normal file
5
app/assets/config/manifest.js
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
//= link_tree ../images
|
||||||
|
//= link_directory ../stylesheets .css
|
||||||
|
//= link_tree ../../javascript .js
|
||||||
|
//= link_tree ../../../vendor/javascript .js
|
||||||
|
//= link_tree ../builds
|
|
@ -2,12 +2,6 @@
|
||||||
@tailwind components;
|
@tailwind components;
|
||||||
@tailwind utilities;
|
@tailwind utilities;
|
||||||
|
|
||||||
.msg-notice {
|
|
||||||
@apply bg-green-300 text-green-900;
|
|
||||||
}
|
|
||||||
.msg-alert {
|
|
||||||
@apply bg-red-300 text-red-900;
|
|
||||||
}
|
|
||||||
/*
|
/*
|
||||||
|
|
||||||
@layer components {
|
@layer components {
|
||||||
|
|
|
@ -1,4 +1,2 @@
|
||||||
class ApplicationController < ActionController::Base
|
class ApplicationController < ActionController::Base
|
||||||
include Authenticatable
|
|
||||||
include Authorizable
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
module Authenticatable
|
|
||||||
extend ActiveSupport::Concern
|
|
||||||
|
|
||||||
included do
|
|
||||||
before_action :authenticate_user
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
|
|
||||||
def authenticate_user
|
|
||||||
Current.user = User.find_by(id: session[:current_user_id]) || GuestUser.new
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -1,37 +0,0 @@
|
||||||
module Authorizable
|
|
||||||
extend ActiveSupport::Concern
|
|
||||||
|
|
||||||
included do
|
|
||||||
before_action :require_registered_user
|
|
||||||
end
|
|
||||||
|
|
||||||
class_methods do
|
|
||||||
def allow_unregistered_user(**args)
|
|
||||||
skip_before_action :require_registered_user, **args
|
|
||||||
end
|
|
||||||
|
|
||||||
def require_unregistered_user(**args)
|
|
||||||
skip_before_action :require_registered_user, **args
|
|
||||||
before_action :require_unregistered_user, **args
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
|
|
||||||
def require_registered_user
|
|
||||||
Current.user.registered? || redirect_to_sign_in
|
|
||||||
end
|
|
||||||
|
|
||||||
def require_unregistered_user
|
|
||||||
Current.user.unregistered? || redirect_to_dashboard
|
|
||||||
end
|
|
||||||
|
|
||||||
def redirect_to_sign_in
|
|
||||||
session[:return_url] = request.url
|
|
||||||
redirect_to new_session_url, alert: "You must be logged in to continue."
|
|
||||||
end
|
|
||||||
|
|
||||||
def redirect_to_dashboard
|
|
||||||
redirect_to root_url, alert: "You are already logged in."
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -3,7 +3,7 @@ class CreditCardBillsController < ApplicationController
|
||||||
|
|
||||||
# GET /credit_card_bills or /credit_card_bills.json
|
# GET /credit_card_bills or /credit_card_bills.json
|
||||||
def index
|
def index
|
||||||
@credit_card_bills = CreditCardBill.all.order(created_at: :desc)
|
@credit_card_bills = CreditCardBill.all
|
||||||
end
|
end
|
||||||
|
|
||||||
# GET /credit_card_bills/1 or /credit_card_bills/1.json
|
# GET /credit_card_bills/1 or /credit_card_bills/1.json
|
||||||
|
|
|
@ -1,44 +0,0 @@
|
||||||
class SessionsController < ApplicationController
|
|
||||||
require_unregistered_user only: %i[new create]
|
|
||||||
# GET /sessions/new
|
|
||||||
def new
|
|
||||||
@session = Session.new
|
|
||||||
end
|
|
||||||
|
|
||||||
# POST /sessions or /sessions.json
|
|
||||||
def create
|
|
||||||
@session = Session.new(session_params)
|
|
||||||
|
|
||||||
respond_to do |format|
|
|
||||||
if @session.save
|
|
||||||
session[:current_user_id] = @session.user_id
|
|
||||||
|
|
||||||
format.html { redirect_to redirect_url, notice: "Session was successfully created." }
|
|
||||||
format.json { render :show, status: :created, location: @session }
|
|
||||||
else
|
|
||||||
format.html { render :new, status: :unprocessable_entity, alert: @session.errors }
|
|
||||||
format.json { render json: @session.errors, status: :unprocessable_entity }
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
# DELETE /sessions/1 or /sessions/1.json
|
|
||||||
def destroy
|
|
||||||
session[:current_user_id] = nil
|
|
||||||
|
|
||||||
respond_to do |format|
|
|
||||||
format.html { redirect_to new_session_url, notice: "Session was successfully destroyed." }
|
|
||||||
format.json { head :no_content }
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
def redirect_url
|
|
||||||
session.delete(:return_url) || root_url
|
|
||||||
end
|
|
||||||
|
|
||||||
# Only allow a list of trusted parameters through.
|
|
||||||
def session_params
|
|
||||||
params.require(:session).permit(:email, :password)
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -1,82 +0,0 @@
|
||||||
class UsersController < ApplicationController
|
|
||||||
require_unregistered_user only: %i[new create]
|
|
||||||
|
|
||||||
before_action :set_user, only: %i[ show edit update destroy ]
|
|
||||||
|
|
||||||
# GET /users or /users.json
|
|
||||||
def index
|
|
||||||
@users = User.all
|
|
||||||
end
|
|
||||||
|
|
||||||
# GET /users/1 or /users/1.json
|
|
||||||
def show
|
|
||||||
end
|
|
||||||
|
|
||||||
# GET /users/new
|
|
||||||
def new
|
|
||||||
@user = User.new
|
|
||||||
end
|
|
||||||
|
|
||||||
# GET /users/1/edit
|
|
||||||
def edit
|
|
||||||
end
|
|
||||||
|
|
||||||
# POST /users or /users.json
|
|
||||||
def create
|
|
||||||
@user = User.new(user_params)
|
|
||||||
|
|
||||||
respond_to do |format|
|
|
||||||
if ENV["REGISTRATION_ALLOWED"].blank?
|
|
||||||
format.html { redirect_to new_session_url, alert: "Registration disabled." }
|
|
||||||
format.json { render json: @user.errors, status: :unprocessable_entity }
|
|
||||||
elsif @user.save
|
|
||||||
@session = Session.new(session_params).save
|
|
||||||
session[:current_user_id] = @session.user_id
|
|
||||||
|
|
||||||
format.html { redirect_to user_url(@user), notice: "User was successfully created." }
|
|
||||||
format.json { render :show, status: :created, location: @user }
|
|
||||||
else
|
|
||||||
format.html { render :new, status: :unprocessable_entity }
|
|
||||||
format.json { render json: @user.errors, status: :unprocessable_entity }
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
# PATCH/PUT /users/1 or /users/1.json
|
|
||||||
def update
|
|
||||||
respond_to do |format|
|
|
||||||
if @user.update(user_params)
|
|
||||||
format.html { redirect_to user_url(@user), notice: "User was successfully updated." }
|
|
||||||
format.json { render :show, status: :ok, location: @user }
|
|
||||||
else
|
|
||||||
format.html { render :edit, status: :unprocessable_entity }
|
|
||||||
format.json { render json: @user.errors, status: :unprocessable_entity }
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
# DELETE /users/1 or /users/1.json
|
|
||||||
def destroy
|
|
||||||
@user.destroy!
|
|
||||||
|
|
||||||
respond_to do |format|
|
|
||||||
format.html { redirect_to users_url, notice: "User was successfully destroyed." }
|
|
||||||
format.json { head :no_content }
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
# Use callbacks to share common setup or constraints between actions.
|
|
||||||
def set_user
|
|
||||||
@user = User.find(params[:id])
|
|
||||||
end
|
|
||||||
|
|
||||||
# Only allow a list of trusted parameters through.
|
|
||||||
def user_params
|
|
||||||
params.require(:user).permit(:email, :password, :password_confirmation)
|
|
||||||
end
|
|
||||||
|
|
||||||
def session_params
|
|
||||||
user_params.slice(:email, :password)
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -2,6 +2,6 @@ module ExpensesHelper
|
||||||
def expense_periods
|
def expense_periods
|
||||||
Expense
|
Expense
|
||||||
.periods
|
.periods
|
||||||
.map { |key, value| [ key.titleize, Expense.periods.key(value) ] }
|
.map { |key, value| [key.titleize, Expense.periods.key(value)] }
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -2,6 +2,6 @@ module IncomesHelper
|
||||||
def members
|
def members
|
||||||
Member
|
Member
|
||||||
.all
|
.all
|
||||||
.map { |member, value| [ member.name, member.id ] }
|
.map { |member, value| [member.name, member.id] }
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
module SessionsHelper
|
|
||||||
end
|
|
|
@ -1,2 +0,0 @@
|
||||||
module UsersHelper
|
|
||||||
end
|
|
|
@ -1,3 +0,0 @@
|
||||||
class Current < ActiveSupport::CurrentAttributes
|
|
||||||
attribute :user
|
|
||||||
end
|
|
|
@ -1,5 +0,0 @@
|
||||||
class GuestUser
|
|
||||||
def registered? = false
|
|
||||||
|
|
||||||
def unregistered? = true
|
|
||||||
end
|
|
|
@ -1,22 +0,0 @@
|
||||||
class Session
|
|
||||||
include ActiveModel::Model
|
|
||||||
|
|
||||||
include ActiveModel::Attributes
|
|
||||||
include ActiveModel::Validations
|
|
||||||
|
|
||||||
attr_accessor :user_id
|
|
||||||
|
|
||||||
attribute :email, :string
|
|
||||||
attribute :password, :string
|
|
||||||
|
|
||||||
validates :email, presence: true
|
|
||||||
validates :password, presence: true
|
|
||||||
|
|
||||||
def save
|
|
||||||
user = User.authenticate_by(email: email, password: password)
|
|
||||||
|
|
||||||
@user_id = user && user.id
|
|
||||||
|
|
||||||
user.present? && self || nil
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -1,7 +0,0 @@
|
||||||
class User < ApplicationRecord
|
|
||||||
has_secure_password
|
|
||||||
|
|
||||||
def registered? = true
|
|
||||||
|
|
||||||
def unregistered? = false
|
|
||||||
end
|
|
|
@ -14,28 +14,14 @@
|
||||||
<body>
|
<body>
|
||||||
<nav class="w-100 p-6 bg-gray-900 flex items-center justify-between flex-wrap">
|
<nav class="w-100 p-6 bg-gray-900 flex items-center justify-between flex-wrap">
|
||||||
<ul class="flex">
|
<ul class="flex">
|
||||||
<% if Current.user.registered? %>
|
<li class="mr-6"><%= link_to "Dashboard", root_path, class: "text-white" %></li>
|
||||||
<li class="mr-6"><%= link_to "Dashboard", root_path, class: "text-white" %></li>
|
<li class="mr-6"><%= link_to "Expenses", expenses_path, class: "text-white" %></li>
|
||||||
<li class="mr-6"><%= link_to "Expenses", expenses_path, class: "text-white" %></li>
|
<li class="mr-6"><%= link_to "Credit Card Bills", credit_card_bills_path, class: "text-white" %></li>
|
||||||
<li class="mr-6"><%= link_to "Credit Card Bills", credit_card_bills_path, class: "text-white" %></li>
|
<li class="mr-6"><%= link_to "Incomes", incomes_path, class: "text-white" %></li>
|
||||||
<li class="mr-6"><%= link_to "Incomes", incomes_path, class: "text-white" %></li>
|
<li class="mr-6"><%= link_to "Members", members_path, class: "text-white" %></li>
|
||||||
<li class="mr-6"><%= link_to "Members", members_path, class: "text-white" %></li>
|
|
||||||
<li class="mr-6"><%= link_to "Log out", session_path, data: {turbo_method: :delete}, class: "text-white" %></li>
|
|
||||||
<% else %>
|
|
||||||
<li class="mr-6"><%= link_to "Sign up", new_user_path, class: "text-white" %></li>
|
|
||||||
<li class="mr-6"><%= link_to "Log in", new_session_path, class: "text-white" %></li>
|
|
||||||
<% end %>
|
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
<% if flash.any? %>
|
|
||||||
<% flash.each do |type, msg| %>
|
|
||||||
<div class="py-2 px-4 font-bold msg-<%= type %>">
|
|
||||||
<%= msg %>
|
|
||||||
</div>
|
|
||||||
<% end %>
|
|
||||||
<% end %>
|
|
||||||
|
|
||||||
<main class="container mx-auto mt-28 px-5 flex">
|
<main class="container mx-auto mt-28 px-5 flex">
|
||||||
<%= yield %>
|
<%= yield %>
|
||||||
</main>
|
</main>
|
||||||
|
|
|
@ -1,27 +0,0 @@
|
||||||
<%= form_with(model: session, class: "contents") do |form| %>
|
|
||||||
<% if session.errors.any? %>
|
|
||||||
<div id="error_explanation" class="bg-red-50 text-red-500 px-3 py-2 font-medium rounded-lg mt-3">
|
|
||||||
<h2><%= pluralize(session.errors.count, "error") %> prohibited this session from being saved:</h2>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
<% session.errors.each do |error| %>
|
|
||||||
<li><%= error.full_message %></li>
|
|
||||||
<% end %>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<% end %>
|
|
||||||
|
|
||||||
<div class="my-5">
|
|
||||||
<%= form.label :email %>
|
|
||||||
<%= form.text_field :email, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="my-5">
|
|
||||||
<%= form.label :password %>
|
|
||||||
<%= form.password_field :password, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="inline">
|
|
||||||
<%= form.submit class: "rounded-lg py-3 px-5 bg-blue-600 text-white inline-block font-medium cursor-pointer" %>
|
|
||||||
</div>
|
|
||||||
<% end %>
|
|
|
@ -1,2 +0,0 @@
|
||||||
<div id="<%= dom_id session %>">
|
|
||||||
</div>
|
|
|
@ -1,2 +0,0 @@
|
||||||
json.extract! session, :id, :created_at, :updated_at
|
|
||||||
json.url session_url(session, format: :json)
|
|
|
@ -1,7 +0,0 @@
|
||||||
<div class="mx-auto md:w-2/3 w-full">
|
|
||||||
<h1 class="font-bold text-4xl">New session</h1>
|
|
||||||
|
|
||||||
<%= render "form", session: @session %>
|
|
||||||
|
|
||||||
<%= link_to "Back to sessions", sessions_path, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
|
|
||||||
</div>
|
|
|
@ -1,32 +0,0 @@
|
||||||
<%= form_with(model: user, class: "contents") do |form| %>
|
|
||||||
<% if user.errors.any? %>
|
|
||||||
<div id="error_explanation" class="bg-red-50 text-red-500 px-3 py-2 font-medium rounded-lg mt-3">
|
|
||||||
<h2><%= pluralize(user.errors.count, "error") %> prohibited this user from being saved:</h2>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
<% user.errors.each do |error| %>
|
|
||||||
<li><%= error.full_message %></li>
|
|
||||||
<% end %>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<% end %>
|
|
||||||
|
|
||||||
<div class="my-5">
|
|
||||||
<%= form.label :email %>
|
|
||||||
<%= form.text_field :email, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="my-5">
|
|
||||||
<%= form.label :password %>
|
|
||||||
<%= form.password_field :password, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="my-5">
|
|
||||||
<%= form.label :password_confirmation %>
|
|
||||||
<%= form.password_field :password_confirmation, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="inline">
|
|
||||||
<%= form.submit class: "rounded-lg py-3 px-5 bg-blue-600 text-white inline-block font-medium cursor-pointer" %>
|
|
||||||
</div>
|
|
||||||
<% end %>
|
|
|
@ -1,7 +0,0 @@
|
||||||
<div id="<%= dom_id user %>">
|
|
||||||
<p class="my-5">
|
|
||||||
<strong class="block font-medium mb-1">Email:</strong>
|
|
||||||
<%= user.email %>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
</div>
|
|
|
@ -1,2 +0,0 @@
|
||||||
json.extract! user, :id, :email, :created_at, :updated_at
|
|
||||||
json.url user_url(user, format: :json)
|
|
|
@ -1,8 +0,0 @@
|
||||||
<div class="mx-auto md:w-2/3 w-full">
|
|
||||||
<h1 class="font-bold text-4xl">Editing user</h1>
|
|
||||||
|
|
||||||
<%= render "form", user: @user %>
|
|
||||||
|
|
||||||
<%= link_to "Show this user", @user, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
|
|
||||||
<%= link_to "Back to users", users_path, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
|
|
||||||
</div>
|
|
|
@ -1,21 +0,0 @@
|
||||||
<div class="w-full">
|
|
||||||
<% if notice.present? %>
|
|
||||||
<p class="py-2 px-3 bg-green-50 mb-5 text-green-500 font-medium rounded-lg inline-block" id="notice"><%= notice %></p>
|
|
||||||
<% end %>
|
|
||||||
|
|
||||||
<% content_for :title, "Users" %>
|
|
||||||
|
|
||||||
<div class="flex justify-between items-center">
|
|
||||||
<h1 class="font-bold text-4xl">Users</h1>
|
|
||||||
<%= link_to "New user", new_user_path, class: "rounded-lg py-3 px-5 bg-blue-600 text-white block font-medium" %>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="users" class="min-w-full">
|
|
||||||
<% @users.each do |user| %>
|
|
||||||
<%= render user %>
|
|
||||||
<p>
|
|
||||||
<%= link_to "Show this user", user, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
|
|
||||||
</p>
|
|
||||||
<% end %>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
|
@ -1 +0,0 @@
|
||||||
json.array! @users, partial: "users/user", as: :user
|
|
|
@ -1,7 +0,0 @@
|
||||||
<div class="mx-auto md:w-2/3 w-full">
|
|
||||||
<h1 class="font-bold text-4xl">New user</h1>
|
|
||||||
|
|
||||||
<%= render "form", user: @user %>
|
|
||||||
|
|
||||||
<%= link_to "Back to users", users_path, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
|
|
||||||
</div>
|
|
|
@ -1,15 +0,0 @@
|
||||||
<div class="mx-auto md:w-2/3 w-full flex">
|
|
||||||
<div class="mx-auto">
|
|
||||||
<% if notice.present? %>
|
|
||||||
<p class="py-2 px-3 bg-green-50 mb-5 text-green-500 font-medium rounded-lg inline-block" id="notice"><%= notice %></p>
|
|
||||||
<% end %>
|
|
||||||
|
|
||||||
<%= render @user %>
|
|
||||||
|
|
||||||
<%= link_to "Edit this user", edit_user_path(@user), class: "mt-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
|
|
||||||
<%= link_to "Back to users", users_path, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
|
|
||||||
<div class="inline-block ml-2">
|
|
||||||
<%= button_to "Destroy this user", @user, method: :delete, class: "mt-2 rounded-lg py-3 px-5 bg-gray-100 font-medium" %>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
|
@ -1 +0,0 @@
|
||||||
json.partial! "users/user", user: @user
|
|
|
@ -1,7 +0,0 @@
|
||||||
#!/usr/bin/env ruby
|
|
||||||
require "rubygems"
|
|
||||||
require "bundler/setup"
|
|
||||||
|
|
||||||
ARGV.unshift("--ensure-latest")
|
|
||||||
|
|
||||||
load Gem.bin_path("brakeman", "brakeman")
|
|
10
bin/dev
10
bin/dev
|
@ -1,2 +1,8 @@
|
||||||
#!/usr/bin/env ruby
|
#!/usr/bin/env sh
|
||||||
exec "./bin/rails", "server", *ARGV
|
|
||||||
|
if ! gem list foreman -i --silent; then
|
||||||
|
echo "Installing foreman..."
|
||||||
|
gem install foreman
|
||||||
|
fi
|
||||||
|
|
||||||
|
exec foreman start -f Procfile.dev "$@"
|
||||||
|
|
|
@ -1,12 +1,7 @@
|
||||||
#!/bin/bash -e
|
#!/bin/bash -e
|
||||||
|
|
||||||
# Enable jemalloc for reduced memory usage and latency.
|
|
||||||
if [ -z "${LD_PRELOAD+x}" ] && [ -f /usr/lib/*/libjemalloc.so.2 ]; then
|
|
||||||
export LD_PRELOAD="$(echo /usr/lib/*/libjemalloc.so.2)"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# If running the rails server then create or migrate existing database
|
# If running the rails server then create or migrate existing database
|
||||||
if [ "${1}" == "./bin/rails" ] && [ "${2}" == "server" ]; then
|
if [ "${*}" == "./bin/rails server" ]; then
|
||||||
./bin/rails db:prepare
|
./bin/rails db:prepare
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
6
bin/jobs
6
bin/jobs
|
@ -1,6 +0,0 @@
|
||||||
#!/usr/bin/env ruby
|
|
||||||
|
|
||||||
require_relative "../config/environment"
|
|
||||||
require "solid_queue/cli"
|
|
||||||
|
|
||||||
SolidQueue::Cli.start(ARGV)
|
|
|
@ -1,8 +0,0 @@
|
||||||
#!/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")
|
|
|
@ -1,8 +1,8 @@
|
||||||
#!/usr/bin/env ruby
|
#!/usr/bin/env ruby
|
||||||
require "fileutils"
|
require "fileutils"
|
||||||
|
|
||||||
|
# path to your application root.
|
||||||
APP_ROOT = File.expand_path("..", __dir__)
|
APP_ROOT = File.expand_path("..", __dir__)
|
||||||
APP_NAME = "family-budget"
|
|
||||||
|
|
||||||
def system!(*args)
|
def system!(*args)
|
||||||
system(*args, exception: true)
|
system(*args, exception: true)
|
||||||
|
@ -30,8 +30,4 @@ FileUtils.chdir APP_ROOT do
|
||||||
|
|
||||||
puts "\n== Restarting application server =="
|
puts "\n== Restarting application server =="
|
||||||
system! "bin/rails restart"
|
system! "bin/rails restart"
|
||||||
|
|
||||||
# puts "\n== Configuring puma-dev =="
|
|
||||||
# system "ln -nfs #{APP_ROOT} ~/.puma-dev/#{APP_NAME}"
|
|
||||||
# system "curl -Is https://#{APP_NAME}.test/up | head -n 1"
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -9,7 +9,7 @@ Bundler.require(*Rails.groups)
|
||||||
module FamilyBudget
|
module FamilyBudget
|
||||||
class Application < Rails::Application
|
class Application < Rails::Application
|
||||||
# Initialize configuration defaults for originally generated Rails version.
|
# Initialize configuration defaults for originally generated Rails version.
|
||||||
config.load_defaults 8.0
|
config.load_defaults 7.1
|
||||||
|
|
||||||
# Please, add to the `ignore` list any other `lib` subdirectories that do
|
# 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.
|
# not contain `.rb` files, or that should not be reloaded or eager loaded.
|
||||||
|
|
|
@ -10,18 +10,8 @@ default: &default
|
||||||
timeout: 5000
|
timeout: 5000
|
||||||
|
|
||||||
development:
|
development:
|
||||||
primary:
|
<<: *default
|
||||||
<<: *default
|
database: db/development.sqlite3
|
||||||
database: db/development.sqlite3
|
|
||||||
cache:
|
|
||||||
<<: *default
|
|
||||||
database: db/development_cache.sqlite3
|
|
||||||
migrations_paths: db/cache_migrate
|
|
||||||
queue:
|
|
||||||
<<: *default
|
|
||||||
database: db/development_queue.sqlite3
|
|
||||||
migrations_paths: db/queue_migrate
|
|
||||||
|
|
||||||
|
|
||||||
# Warning: The database defined as "test" will be erased and
|
# Warning: The database defined as "test" will be erased and
|
||||||
# re-generated from your development database when you run "rake".
|
# re-generated from your development database when you run "rake".
|
||||||
|
@ -31,14 +21,5 @@ test:
|
||||||
database: db/test.sqlite3
|
database: db/test.sqlite3
|
||||||
|
|
||||||
production:
|
production:
|
||||||
primary:
|
<<: *default
|
||||||
<<: *default
|
database: db/production.sqlite3
|
||||||
database: db/production.sqlite3
|
|
||||||
cache:
|
|
||||||
<<: *default
|
|
||||||
database: db/production_cache.sqlite3
|
|
||||||
migrations_paths: db/cache_migrate
|
|
||||||
queue:
|
|
||||||
<<: *default
|
|
||||||
database: db/production_queue.sqlite3
|
|
||||||
migrations_paths: db/queue_migrate
|
|
||||||
|
|
|
@ -14,7 +14,7 @@ Rails.application.configure do
|
||||||
# Show full error reports.
|
# Show full error reports.
|
||||||
config.consider_all_requests_local = true
|
config.consider_all_requests_local = true
|
||||||
|
|
||||||
# Enable server timing.
|
# Enable server timing
|
||||||
config.server_timing = true
|
config.server_timing = true
|
||||||
|
|
||||||
# Enable/disable caching. By default caching is disabled.
|
# Enable/disable caching. By default caching is disabled.
|
||||||
|
@ -22,13 +22,16 @@ Rails.application.configure do
|
||||||
if Rails.root.join("tmp/caching-dev.txt").exist?
|
if Rails.root.join("tmp/caching-dev.txt").exist?
|
||||||
config.action_controller.perform_caching = true
|
config.action_controller.perform_caching = true
|
||||||
config.action_controller.enable_fragment_cache_logging = true
|
config.action_controller.enable_fragment_cache_logging = true
|
||||||
config.public_file_server.headers = { "Cache-Control" => "public, max-age=#{2.days.to_i}" }
|
|
||||||
|
config.cache_store = :memory_store
|
||||||
|
config.public_file_server.headers = {
|
||||||
|
"Cache-Control" => "public, max-age=#{2.days.to_i}"
|
||||||
|
}
|
||||||
else
|
else
|
||||||
config.action_controller.perform_caching = false
|
config.action_controller.perform_caching = false
|
||||||
end
|
|
||||||
|
|
||||||
# Change this to :null_store to avoid any caching
|
config.cache_store = :null_store
|
||||||
config.cache_store = :solid_cache_store
|
end
|
||||||
|
|
||||||
# Store uploaded files on the local file system (see config/storage.yml for options).
|
# Store uploaded files on the local file system (see config/storage.yml for options).
|
||||||
config.active_storage.service = :local
|
config.active_storage.service = :local
|
||||||
|
@ -36,23 +39,23 @@ Rails.application.configure do
|
||||||
# Don't care if the mailer can't send.
|
# Don't care if the mailer can't send.
|
||||||
config.action_mailer.raise_delivery_errors = false
|
config.action_mailer.raise_delivery_errors = false
|
||||||
|
|
||||||
# Disable caching for Action Mailer templates even if Action Controller
|
|
||||||
# caching is enabled.
|
|
||||||
config.action_mailer.perform_caching = false
|
config.action_mailer.perform_caching = false
|
||||||
|
|
||||||
config.action_mailer.default_url_options = { host: "localhost", port: 3000 }
|
|
||||||
|
|
||||||
# Print deprecation notices to the Rails logger.
|
# Print deprecation notices to the Rails logger.
|
||||||
config.active_support.deprecation = :log
|
config.active_support.deprecation = :log
|
||||||
|
|
||||||
|
# Raise exceptions for disallowed deprecations.
|
||||||
|
config.active_support.disallowed_deprecation = :raise
|
||||||
|
|
||||||
|
# Tell Active Support which deprecation messages to disallow.
|
||||||
|
config.active_support.disallowed_deprecation_warnings = []
|
||||||
|
|
||||||
# Raise an error on page load if there are pending migrations.
|
# Raise an error on page load if there are pending migrations.
|
||||||
config.active_record.migration_error = :page_load
|
config.active_record.migration_error = :page_load
|
||||||
|
|
||||||
# Highlight code that triggered database queries in logs.
|
# Highlight code that triggered database queries in logs.
|
||||||
config.active_record.verbose_query_logs = true
|
config.active_record.verbose_query_logs = true
|
||||||
|
|
||||||
# Use a real queuing backend for Active Job (and separate queues per environment).
|
|
||||||
config.active_job.queue_adapter = :solid_queue
|
|
||||||
# Highlight code that enqueued background job in logs.
|
# Highlight code that enqueued background job in logs.
|
||||||
config.active_job.verbose_enqueue_logs = true
|
config.active_job.verbose_enqueue_logs = true
|
||||||
|
|
||||||
|
@ -63,14 +66,11 @@ Rails.application.configure do
|
||||||
# config.i18n.raise_on_missing_translations = true
|
# config.i18n.raise_on_missing_translations = true
|
||||||
|
|
||||||
# Annotate rendered view with file names.
|
# Annotate rendered view with file names.
|
||||||
config.action_view.annotate_rendered_view_with_filenames = true
|
# config.action_view.annotate_rendered_view_with_filenames = true
|
||||||
|
|
||||||
# Uncomment if you wish to allow Action Cable access from any origin.
|
# Uncomment if you wish to allow Action Cable access from any origin.
|
||||||
# config.action_cable.disable_request_forgery_protection = true
|
# config.action_cable.disable_request_forgery_protection = true
|
||||||
|
|
||||||
# Raise error when a before_action's only/except options reference missing actions.
|
# Raise error when a before_action's only/except options reference missing actions
|
||||||
config.action_controller.raise_on_missing_callback_actions = true
|
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
|
end
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
require "active_support/core_ext/integer/time"
|
||||||
|
|
||||||
Rails.application.configure do
|
Rails.application.configure do
|
||||||
# Settings specified here will take precedence over those in config/application.rb.
|
# Settings specified here will take precedence over those in config/application.rb.
|
||||||
|
|
||||||
|
@ -18,13 +20,13 @@ Rails.application.configure do
|
||||||
# key such as config/credentials/production.key. This key is used to decrypt credentials (and other encrypted files).
|
# key such as config/credentials/production.key. This key is used to decrypt credentials (and other encrypted files).
|
||||||
# config.require_master_key = true
|
# config.require_master_key = true
|
||||||
|
|
||||||
# Disable serving static files from `public/`, relying on NGINX/Apache to do so instead.
|
# Enable static file serving from the `/public` folder (turn off if using NGINX/Apache for it).
|
||||||
# config.public_file_server.enabled = false
|
config.public_file_server.enabled = true
|
||||||
|
|
||||||
# Compress CSS using a preprocessor.
|
# Compress CSS using a preprocessor.
|
||||||
# config.assets.css_compressor = :sass
|
# config.assets.css_compressor = :sass
|
||||||
|
|
||||||
# Do not fall back to assets pipeline if a precompiled asset is missed.
|
# Do not fallback to assets pipeline if a precompiled asset is missed.
|
||||||
config.assets.compile = false
|
config.assets.compile = false
|
||||||
|
|
||||||
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
|
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
|
||||||
|
@ -49,33 +51,26 @@ Rails.application.configure do
|
||||||
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
||||||
config.force_ssl = false
|
config.force_ssl = false
|
||||||
|
|
||||||
# Skip http-to-https redirect for the default health check endpoint.
|
|
||||||
# config.ssl_options = { redirect: { exclude: ->(request) { request.path == "/up" } } }
|
|
||||||
|
|
||||||
# Log to STDOUT by default
|
# Log to STDOUT by default
|
||||||
config.logger = ActiveSupport::Logger.new(STDOUT)
|
config.logger = ActiveSupport::Logger.new($stdout)
|
||||||
.tap { |logger| logger.formatter = ::Logger::Formatter.new }
|
.tap { |logger| logger.formatter = ::Logger::Formatter.new }
|
||||||
.then { |logger| ActiveSupport::TaggedLogging.new(logger) }
|
.then { |logger| ActiveSupport::TaggedLogging.new(logger) }
|
||||||
|
|
||||||
# Prepend all log lines with the following tags.
|
# Prepend all log lines with the following tags.
|
||||||
config.log_tags = [ :request_id ]
|
config.log_tags = [:request_id]
|
||||||
|
|
||||||
# "info" includes generic and useful information about system operation, but avoids logging too much
|
# Info include generic and useful information about system operation, but avoids logging too much
|
||||||
# information to avoid inadvertent exposure of personally identifiable information (PII). If you
|
# information to avoid inadvertent exposure of personally identifiable information (PII). If you
|
||||||
# want to log everything, set the level to "debug".
|
# want to log everything, set the level to "debug".
|
||||||
config.log_level = ENV.fetch("RAILS_LOG_LEVEL", "info")
|
config.log_level = ENV.fetch("RAILS_LOG_LEVEL", "info")
|
||||||
|
|
||||||
# Use a different cache store in production.
|
# Use a different cache store in production.
|
||||||
config.cache_store = :solid_cache_store
|
# config.cache_store = :mem_cache_store
|
||||||
|
|
||||||
# Use a real queuing backend for Active Job (and separate queues per environment).
|
# Use a real queuing backend for Active Job (and separate queues per environment).
|
||||||
config.active_job.queue_adapter = :solid_queue
|
# config.active_job.queue_adapter = :resque
|
||||||
config.solid_queue.connects_to = { database: { writing: :queue } }
|
|
||||||
|
|
||||||
# config.active_job.queue_name_prefix = "family_budget_production"
|
# config.active_job.queue_name_prefix = "family_budget_production"
|
||||||
|
|
||||||
# Disable caching for Action Mailer templates even if Action Controller
|
|
||||||
# caching is enabled.
|
|
||||||
config.action_mailer.perform_caching = false
|
config.action_mailer.perform_caching = false
|
||||||
|
|
||||||
# Ignore bad email addresses and do not raise email delivery errors.
|
# Ignore bad email addresses and do not raise email delivery errors.
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
require "active_support/core_ext/integer/time"
|
||||||
|
|
||||||
# The test environment is used exclusively to run your application's
|
# The test environment is used exclusively to run your application's
|
||||||
# test suite. You never need to work with it otherwise. Remember that
|
# 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
|
# your test database is "scratch space" for the test suite and is wiped
|
||||||
|
@ -16,14 +18,17 @@ Rails.application.configure do
|
||||||
config.eager_load = ENV["CI"].present?
|
config.eager_load = ENV["CI"].present?
|
||||||
|
|
||||||
# Configure public file server for tests with Cache-Control for performance.
|
# Configure public file server for tests with Cache-Control for performance.
|
||||||
config.public_file_server.headers = { "Cache-Control" => "public, max-age=3600" }
|
config.public_file_server.enabled = true
|
||||||
|
config.public_file_server.headers = {
|
||||||
|
"Cache-Control" => "public, max-age=#{1.hour.to_i}"
|
||||||
|
}
|
||||||
|
|
||||||
# Show full error reports and disable caching.
|
# Show full error reports and disable caching.
|
||||||
config.consider_all_requests_local = true
|
config.consider_all_requests_local = true
|
||||||
config.action_controller.perform_caching = false
|
config.action_controller.perform_caching = false
|
||||||
config.cache_store = :null_store
|
config.cache_store = :null_store
|
||||||
|
|
||||||
# Render exception templates for rescuable exceptions and raise for other exceptions.
|
# Raise exceptions instead of rendering exception templates.
|
||||||
config.action_dispatch.show_exceptions = :rescuable
|
config.action_dispatch.show_exceptions = :rescuable
|
||||||
|
|
||||||
# Disable request forgery protection in test environment.
|
# Disable request forgery protection in test environment.
|
||||||
|
@ -32,8 +37,6 @@ Rails.application.configure do
|
||||||
# Store uploaded files on the local file system in a temporary directory.
|
# Store uploaded files on the local file system in a temporary directory.
|
||||||
config.active_storage.service = :test
|
config.active_storage.service = :test
|
||||||
|
|
||||||
# Disable caching for Action Mailer templates even if Action Controller
|
|
||||||
# caching is enabled.
|
|
||||||
config.action_mailer.perform_caching = false
|
config.action_mailer.perform_caching = false
|
||||||
|
|
||||||
# Tell Action Mailer not to deliver emails to the real world.
|
# Tell Action Mailer not to deliver emails to the real world.
|
||||||
|
@ -41,19 +44,21 @@ Rails.application.configure do
|
||||||
# ActionMailer::Base.deliveries array.
|
# ActionMailer::Base.deliveries array.
|
||||||
config.action_mailer.delivery_method = :test
|
config.action_mailer.delivery_method = :test
|
||||||
|
|
||||||
# Unlike controllers, the mailer instance doesn't have any context about the
|
|
||||||
# incoming request so you'll need to provide the :host parameter yourself.
|
|
||||||
config.action_mailer.default_url_options = { host: "www.example.com" }
|
|
||||||
|
|
||||||
# Print deprecation notices to the stderr.
|
# Print deprecation notices to the stderr.
|
||||||
config.active_support.deprecation = :stderr
|
config.active_support.deprecation = :stderr
|
||||||
|
|
||||||
|
# Raise exceptions for disallowed deprecations.
|
||||||
|
config.active_support.disallowed_deprecation = :raise
|
||||||
|
|
||||||
|
# Tell Active Support which deprecation messages to disallow.
|
||||||
|
config.active_support.disallowed_deprecation_warnings = []
|
||||||
|
|
||||||
# Raises error for missing translations.
|
# Raises error for missing translations.
|
||||||
# config.i18n.raise_on_missing_translations = true
|
# config.i18n.raise_on_missing_translations = true
|
||||||
|
|
||||||
# Annotate rendered view with file names.
|
# Annotate rendered view with file names.
|
||||||
# config.action_view.annotate_rendered_view_with_filenames = true
|
# config.action_view.annotate_rendered_view_with_filenames = true
|
||||||
|
|
||||||
# Raise error when a before_action's only/except options reference missing actions.
|
# Raise error when a before_action's only/except options reference missing actions
|
||||||
config.action_controller.raise_on_missing_callback_actions = true
|
config.action_controller.raise_on_missing_callback_actions = true
|
||||||
end
|
end
|
||||||
|
|
|
@ -4,5 +4,5 @@
|
||||||
# Use this to limit dissemination of sensitive information.
|
# Use this to limit dissemination of sensitive information.
|
||||||
# See the ActiveSupport::ParameterFilter documentation for supported notations and behaviors.
|
# See the ActiveSupport::ParameterFilter documentation for supported notations and behaviors.
|
||||||
Rails.application.config.filter_parameters += [
|
Rails.application.config.filter_parameters += [
|
||||||
:passw, :email, :secret, :token, :_key, :crypt, :salt, :certificate, :otp, :ssn, :cvv, :cvc
|
:passw, :secret, :token, :_key, :crypt, :salt, :certificate, :otp, :ssn
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,25 +0,0 @@
|
||||||
# Be sure to restart your server when you modify this file.
|
|
||||||
#
|
|
||||||
# This file eases your Rails 8.0 framework defaults upgrade.
|
|
||||||
#
|
|
||||||
# Uncomment each configuration one by one to switch to the new default.
|
|
||||||
# Once your application is ready to run with all new defaults, you can remove
|
|
||||||
# this file and set the `config.load_defaults` to `8.0`.
|
|
||||||
#
|
|
||||||
# Read the Guide for Upgrading Ruby on Rails for more info on each option.
|
|
||||||
# https://guides.rubyonrails.org/upgrading_ruby_on_rails.html
|
|
||||||
|
|
||||||
###
|
|
||||||
# Specifies whether `to_time` methods preserve the UTC offset of their receivers or preserves the timezone.
|
|
||||||
# If set to `:zone`, `to_time` methods will use the timezone of their receivers.
|
|
||||||
# If set to `:offset`, `to_time` methods will use the UTC offset.
|
|
||||||
# If `false`, `to_time` methods will convert to the local system UTC offset instead.
|
|
||||||
#++
|
|
||||||
# Rails.application.config.active_support.to_time_preserves_timezone = :zone
|
|
||||||
|
|
||||||
###
|
|
||||||
# When both `If-Modified-Since` and `If-None-Match` are provided by the client
|
|
||||||
# only consider `If-None-Match` as specified by RFC 7232 Section 6.
|
|
||||||
# If set to `false` both conditions need to be satisfied.
|
|
||||||
#++
|
|
||||||
# Rails.application.config.action_dispatch.strict_freshness = true
|
|
|
@ -1,12 +0,0 @@
|
||||||
# Automatically enable YJIT if running Ruby 3.3 or newer,
|
|
||||||
# as it brings very sizeable performance improvements.
|
|
||||||
# Many users reported 15-25% improved latency.
|
|
||||||
|
|
||||||
# If you are deploying to a memory-constrained environment,
|
|
||||||
# you may want to delete this file, but otherwise, it's free
|
|
||||||
# performance.
|
|
||||||
if defined? RubyVM::YJIT.enable
|
|
||||||
Rails.application.config.after_initialize do
|
|
||||||
RubyVM::YJIT.enable
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -1,56 +1,43 @@
|
||||||
# This configuration file will be evaluated by Puma. The top-level methods that
|
# Puma can serve each request in a thread from an internal thread pool.
|
||||||
# are invoked here are part of Puma's configuration DSL. For more information
|
# The `threads` method setting takes two numbers: a minimum and maximum.
|
||||||
# about methods provided by the DSL, see https://puma.io/puma/Puma/DSL.html.
|
# Any libraries that use thread pools should be configured to match
|
||||||
|
# the maximum value specified for Puma. Default is set to 5 threads for minimum
|
||||||
# Puma starts a configurable number of processes (workers) and each process
|
# and maximum; this matches the default thread size of Active Record.
|
||||||
# serves each request in a thread from an internal thread pool.
|
|
||||||
#
|
#
|
||||||
# The ideal number of threads per worker depends both on how much time the
|
max_threads_count = ENV.fetch("RAILS_MAX_THREADS", 5)
|
||||||
# application spends waiting for IO operations and on how much you wish to
|
min_threads_count = ENV.fetch("RAILS_MIN_THREADS") { max_threads_count }
|
||||||
# prioritize throughput over latency.
|
threads min_threads_count, max_threads_count
|
||||||
#
|
|
||||||
# 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 `environment` that Puma will run in.
|
# Specifies the `worker_timeout` threshold that Puma will use to wait before
|
||||||
rails_env = ENV.fetch("RAILS_ENV", "development")
|
# terminating a worker in development environments.
|
||||||
environment rails_env
|
#
|
||||||
|
worker_timeout 3600 if ENV.fetch("RAILS_ENV", "development") == "development"
|
||||||
case rails_env
|
|
||||||
when "production"
|
|
||||||
# If you are running more than 1 thread per process, the workers count
|
|
||||||
# should be equal to the number of processors (CPU cores) in production.
|
|
||||||
#
|
|
||||||
# Automatically detect the number of available processors in production.
|
|
||||||
require "concurrent-ruby"
|
|
||||||
workers_count = Integer(ENV.fetch("WEB_CONCURRENCY") { Concurrent.available_processor_count })
|
|
||||||
workers workers_count if workers_count > 1
|
|
||||||
|
|
||||||
preload_app!
|
|
||||||
when "development"
|
|
||||||
# Specifies a very generous `worker_timeout` so that the worker
|
|
||||||
# isn't killed by Puma when suspended by a debugger.
|
|
||||||
worker_timeout 3600
|
|
||||||
end
|
|
||||||
|
|
||||||
# Specifies the `port` that Puma will listen on to receive requests; default is 3000.
|
# Specifies the `port` that Puma will listen on to receive requests; default is 3000.
|
||||||
|
#
|
||||||
port ENV.fetch("PORT", 3000)
|
port ENV.fetch("PORT", 3000)
|
||||||
|
|
||||||
|
# Specifies the `environment` that Puma will run in.
|
||||||
|
#
|
||||||
|
environment ENV.fetch("RAILS_ENV") { "development" }
|
||||||
|
|
||||||
|
# Specifies the `pidfile` that Puma will use.
|
||||||
|
pidfile ENV.fetch("PIDFILE") { "tmp/pids/server.pid" }
|
||||||
|
|
||||||
|
# Specifies the number of `workers` to boot in clustered mode.
|
||||||
|
# Workers are forked web server processes. If using threads and workers together
|
||||||
|
# the concurrency of the application would be max `threads` * `workers`.
|
||||||
|
# Workers do not work on JRuby or Windows (both of which do not support
|
||||||
|
# processes).
|
||||||
|
#
|
||||||
|
# workers ENV.fetch("WEB_CONCURRENCY") { 2 }
|
||||||
|
|
||||||
|
# Use the `preload_app!` method when specifying a `workers` number.
|
||||||
|
# This directive tells Puma to first boot the application and load code
|
||||||
|
# before forking the application. This takes advantage of Copy On Write
|
||||||
|
# process behavior so workers use less memory.
|
||||||
|
#
|
||||||
|
# preload_app!
|
||||||
|
|
||||||
# Allow puma to be restarted by `bin/rails restart` command.
|
# Allow puma to be restarted by `bin/rails restart` command.
|
||||||
plugin :tmp_restart
|
plugin :tmp_restart
|
||||||
plugin :solid_queue
|
|
||||||
plugin :tailwindcss if ENV.fetch("RAILS_ENV", "development") == "development"
|
|
||||||
|
|
||||||
# Only use a pidfile when requested
|
|
||||||
pidfile ENV["PIDFILE"] if ENV["PIDFILE"]
|
|
||||||
|
|
|
@ -1,7 +1,4 @@
|
||||||
Rails.application.routes.draw do
|
Rails.application.routes.draw do
|
||||||
resources :sessions, only: %i[new create]
|
|
||||||
resource :session, only: :destroy
|
|
||||||
resources :users
|
|
||||||
resources :credit_card_bills
|
resources :credit_card_bills
|
||||||
resource :dashboard, only: :show
|
resource :dashboard, only: :show
|
||||||
resources :incomes
|
resources :incomes
|
||||||
|
|
|
@ -1,16 +0,0 @@
|
||||||
default: &default
|
|
||||||
database: cache
|
|
||||||
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:
|
|
||||||
<<: *default
|
|
|
@ -1,18 +0,0 @@
|
||||||
default: &default
|
|
||||||
dispatchers:
|
|
||||||
- polling_interval: 1
|
|
||||||
batch_size: 500
|
|
||||||
workers:
|
|
||||||
- queues: "*"
|
|
||||||
threads: 3
|
|
||||||
processes: <%= ENV.fetch("JOB_CONCURRENCY", 1) %>
|
|
||||||
polling_interval: 0.1
|
|
||||||
|
|
||||||
development:
|
|
||||||
<<: *default
|
|
||||||
|
|
||||||
test:
|
|
||||||
<<: *default
|
|
||||||
|
|
||||||
production:
|
|
||||||
<<: *default
|
|
|
@ -1,14 +0,0 @@
|
||||||
# frozen_string_literal: true
|
|
||||||
|
|
||||||
ActiveRecord::Schema[7.1].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
|
|
|
@ -1,101 +0,0 @@
|
||||||
# This migration comes from solid_queue (originally 20231211200639)
|
|
||||||
class CreateSolidQueueTables < ActiveRecord::Migration[7.0]
|
|
||||||
def change
|
|
||||||
create_table :solid_queue_jobs do |t|
|
|
||||||
t.string :queue_name, null: false
|
|
||||||
t.string :class_name, null: false, index: true
|
|
||||||
t.text :arguments
|
|
||||||
t.integer :priority, default: 0, null: false
|
|
||||||
t.string :active_job_id, index: true
|
|
||||||
t.datetime :scheduled_at
|
|
||||||
t.datetime :finished_at, index: true
|
|
||||||
t.string :concurrency_key
|
|
||||||
|
|
||||||
t.timestamps
|
|
||||||
|
|
||||||
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_scheduled_executions do |t|
|
|
||||||
t.references :job, index: { unique: true }, 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 [ :scheduled_at, :priority, :job_id ], name: "index_solid_queue_dispatch_all"
|
|
||||||
end
|
|
||||||
|
|
||||||
create_table :solid_queue_ready_executions do |t|
|
|
||||||
t.references :job, index: { unique: true }, null: false
|
|
||||||
t.string :queue_name, null: false
|
|
||||||
t.integer :priority, default: 0, null: false
|
|
||||||
|
|
||||||
t.datetime :created_at, null: false
|
|
||||||
|
|
||||||
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_claimed_executions do |t|
|
|
||||||
t.references :job, index: { unique: true }, null: false
|
|
||||||
t.bigint :process_id
|
|
||||||
t.datetime :created_at, null: false
|
|
||||||
|
|
||||||
t.index [ :process_id, :job_id ]
|
|
||||||
end
|
|
||||||
|
|
||||||
create_table :solid_queue_blocked_executions do |t|
|
|
||||||
t.references :job, index: { unique: true }, 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 [ :expires_at, :concurrency_key ], name: "index_solid_queue_blocked_executions_for_maintenance"
|
|
||||||
end
|
|
||||||
|
|
||||||
create_table :solid_queue_failed_executions do |t|
|
|
||||||
t.references :job, index: { unique: true }, null: false
|
|
||||||
t.text :error
|
|
||||||
t.datetime :created_at, null: false
|
|
||||||
end
|
|
||||||
|
|
||||||
create_table :solid_queue_pauses do |t|
|
|
||||||
t.string :queue_name, null: false, index: { unique: true }
|
|
||||||
t.datetime :created_at, null: false
|
|
||||||
end
|
|
||||||
|
|
||||||
create_table :solid_queue_processes do |t|
|
|
||||||
t.string :kind, null: false
|
|
||||||
t.datetime :last_heartbeat_at, null: false, index: true
|
|
||||||
t.bigint :supervisor_id, index: true
|
|
||||||
|
|
||||||
t.integer :pid, null: false
|
|
||||||
t.string :hostname
|
|
||||||
t.text :metadata
|
|
||||||
|
|
||||||
t.datetime :created_at, null: false
|
|
||||||
end
|
|
||||||
|
|
||||||
create_table :solid_queue_semaphores do |t|
|
|
||||||
t.string :key, null: false, index: { unique: true }
|
|
||||||
t.integer :value, default: 1, null: false
|
|
||||||
t.datetime :expires_at, null: false, index: true
|
|
||||||
|
|
||||||
t.timestamps
|
|
||||||
|
|
||||||
t.index [ :key, :value ], name: "index_solid_queue_semaphores_on_key_and_value"
|
|
||||||
end
|
|
||||||
|
|
||||||
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_scheduled_executions, :solid_queue_jobs, column: :job_id, on_delete: :cascade
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -1,6 +0,0 @@
|
||||||
# This migration comes from solid_queue (originally 20240110143450)
|
|
||||||
class AddMissingIndexToBlockedExecutions < ActiveRecord::Migration[7.1]
|
|
||||||
def change
|
|
||||||
add_index :solid_queue_blocked_executions, [ :concurrency_key, :priority, :job_id ], name: "index_solid_queue_blocked_executions_for_release"
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -1,15 +0,0 @@
|
||||||
# This migration comes from solid_queue (originally 20240218110712)
|
|
||||||
class CreateRecurringExecutions < ActiveRecord::Migration[7.1]
|
|
||||||
def change
|
|
||||||
create_table :solid_queue_recurring_executions do |t|
|
|
||||||
t.references :job, index: { unique: true }, null: false
|
|
||||||
t.string :task_key, null: false
|
|
||||||
t.datetime :run_at, null: false
|
|
||||||
t.datetime :created_at, null: false
|
|
||||||
|
|
||||||
t.index [ :task_key, :run_at ], unique: true
|
|
||||||
end
|
|
||||||
|
|
||||||
add_foreign_key :solid_queue_recurring_executions, :solid_queue_jobs, column: :job_id, on_delete: :cascade
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -1,11 +0,0 @@
|
||||||
class CreateUsers < ActiveRecord::Migration[8.0]
|
|
||||||
def change
|
|
||||||
create_table :users do |t|
|
|
||||||
t.string :email
|
|
||||||
t.string :password_digest
|
|
||||||
|
|
||||||
t.timestamps
|
|
||||||
end
|
|
||||||
add_index :users, :email, unique: true
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -1,21 +0,0 @@
|
||||||
# This migration comes from solid_queue (originally 20240719134516)
|
|
||||||
class CreateRecurringTasks < ActiveRecord::Migration[7.1]
|
|
||||||
def change
|
|
||||||
create_table :solid_queue_recurring_tasks do |t|
|
|
||||||
t.string :key, null: false, index: { unique: true }
|
|
||||||
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, index: true
|
|
||||||
|
|
||||||
t.text :description
|
|
||||||
|
|
||||||
t.timestamps
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -1,6 +0,0 @@
|
||||||
# This migration comes from solid_queue (originally 20240811173327)
|
|
||||||
class AddNameToProcesses < ActiveRecord::Migration[7.1]
|
|
||||||
def change
|
|
||||||
add_column :solid_queue_processes, :name, :string
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -1,17 +0,0 @@
|
||||||
# This migration comes from solid_queue (originally 20240813160053)
|
|
||||||
class MakeNameNotNull < ActiveRecord::Migration[7.1]
|
|
||||||
def up
|
|
||||||
SolidQueue::Process.where(name: nil).find_each do |process|
|
|
||||||
process.name ||= [ process.kind.downcase, SecureRandom.hex(10) ].join("-")
|
|
||||||
process.save!
|
|
||||||
end
|
|
||||||
|
|
||||||
change_column :solid_queue_processes, :name, :string, null: false
|
|
||||||
add_index :solid_queue_processes, [ :name, :supervisor_id ], unique: true
|
|
||||||
end
|
|
||||||
|
|
||||||
def down
|
|
||||||
remove_index :solid_queue_processes, [ :name, :supervisor_id ]
|
|
||||||
change_column :solid_queue_processes, :name, :string, null: false
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -1,6 +0,0 @@
|
||||||
# This migration comes from solid_queue (originally 20240819165045)
|
|
||||||
class ChangeSolidQueueRecurringTasksStaticToNotNull < ActiveRecord::Migration[7.1]
|
|
||||||
def change
|
|
||||||
change_column_null :solid_queue_recurring_tasks, :static, false, true
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -1,129 +0,0 @@
|
||||||
ActiveRecord::Schema[7.1].define(version: 2024_09_04_193154) 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.index [ "active_job_id" ], name: "index_solid_queue_jobs_on_active_job_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
|
|
||||||
|
|
||||||
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
|
|
137
db/schema.rb
generated
137
db/schema.rb
generated
|
@ -10,7 +10,7 @@
|
||||||
#
|
#
|
||||||
# It's strongly recommended that you check this file into your version control system.
|
# It's strongly recommended that you check this file into your version control system.
|
||||||
|
|
||||||
ActiveRecord::Schema[8.0].define(version: 2024_09_09_011044) do
|
ActiveRecord::Schema[7.1].define(version: 2023_10_11_024748) do
|
||||||
create_table "credit_card_bills", force: :cascade do |t|
|
create_table "credit_card_bills", force: :cascade do |t|
|
||||||
t.string "description"
|
t.string "description"
|
||||||
t.decimal "amount"
|
t.decimal "amount"
|
||||||
|
@ -45,140 +45,5 @@ ActiveRecord::Schema[8.0].define(version: 2024_09_09_011044) do
|
||||||
t.datetime "updated_at", null: false
|
t.datetime "updated_at", null: false
|
||||||
end
|
end
|
||||||
|
|
||||||
create_table "solid_queue_blocked_executions", force: :cascade do |t|
|
|
||||||
t.integer "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.integer "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.integer "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.index ["active_job_id"], name: "index_solid_queue_jobs_on_active_job_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.integer "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.integer "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.integer "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 "users", force: :cascade do |t|
|
|
||||||
t.string "email"
|
|
||||||
t.string "password_digest"
|
|
||||||
t.datetime "created_at", null: false
|
|
||||||
t.datetime "updated_at", null: false
|
|
||||||
t.index ["email"], name: "index_users_on_email", unique: true
|
|
||||||
end
|
|
||||||
|
|
||||||
add_foreign_key "incomes", "members"
|
add_foreign_key "incomes", "members"
|
||||||
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
|
end
|
||||||
|
|
|
@ -1,66 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Your browser is not supported (406)</title>
|
|
||||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
||||||
<style>
|
|
||||||
.rails-default-error-page {
|
|
||||||
background-color: #EFEFEF;
|
|
||||||
color: #2E2F30;
|
|
||||||
text-align: center;
|
|
||||||
font-family: arial, sans-serif;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.rails-default-error-page div.dialog {
|
|
||||||
width: 95%;
|
|
||||||
max-width: 33em;
|
|
||||||
margin: 4em auto 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.rails-default-error-page div.dialog > div {
|
|
||||||
border: 1px solid #CCC;
|
|
||||||
border-right-color: #999;
|
|
||||||
border-left-color: #999;
|
|
||||||
border-bottom-color: #BBB;
|
|
||||||
border-top: #B00100 solid 4px;
|
|
||||||
border-top-left-radius: 9px;
|
|
||||||
border-top-right-radius: 9px;
|
|
||||||
background-color: white;
|
|
||||||
padding: 7px 12% 0;
|
|
||||||
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
|
||||||
}
|
|
||||||
|
|
||||||
.rails-default-error-page h1 {
|
|
||||||
font-size: 100%;
|
|
||||||
color: #730E15;
|
|
||||||
line-height: 1.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.rails-default-error-page div.dialog > p {
|
|
||||||
margin: 0 0 1em;
|
|
||||||
padding: 1em;
|
|
||||||
background-color: #F7F7F7;
|
|
||||||
border: 1px solid #CCC;
|
|
||||||
border-right-color: #999;
|
|
||||||
border-left-color: #999;
|
|
||||||
border-bottom-color: #999;
|
|
||||||
border-bottom-left-radius: 4px;
|
|
||||||
border-bottom-right-radius: 4px;
|
|
||||||
border-top-color: #DADADA;
|
|
||||||
color: #666;
|
|
||||||
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body class="rails-default-error-page">
|
|
||||||
<!-- This file lives in public/406-unsupported-browser.html -->
|
|
||||||
<div class="dialog">
|
|
||||||
<div>
|
|
||||||
<h1>Your browser is not supported.</h1>
|
|
||||||
<p>Please upgrade your browser to continue.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
BIN
public/icon.png
BIN
public/icon.png
Binary file not shown.
Before Width: | Height: | Size: 5.5 KiB |
|
@ -1,3 +0,0 @@
|
||||||
<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<rect width="100%" height="100%" fill="red"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 121 B |
|
@ -3,16 +3,5 @@ require "test_helper"
|
||||||
class ApplicationSystemTestCase < ActionDispatch::SystemTestCase
|
class ApplicationSystemTestCase < ActionDispatch::SystemTestCase
|
||||||
driven_by :selenium,
|
driven_by :selenium,
|
||||||
using: ENV["VISIBLE_SYSTEM_TESTS"].present? ? :chrome : :headless_chrome,
|
using: ENV["VISIBLE_SYSTEM_TESTS"].present? ? :chrome : :headless_chrome,
|
||||||
screen_size: [ 1400, 1400 ]
|
screen_size: [1400, 1400]
|
||||||
|
|
||||||
def login(email, password = "secret")
|
|
||||||
visit new_session_url
|
|
||||||
|
|
||||||
fill_in "Email", with: email
|
|
||||||
fill_in "Password", with: "secret"
|
|
||||||
|
|
||||||
click_on "Create Session"
|
|
||||||
|
|
||||||
assert_text "Session was successfully created"
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,28 +0,0 @@
|
||||||
require "test_helper"
|
|
||||||
|
|
||||||
class SessionsControllerTest < ActionDispatch::IntegrationTest
|
|
||||||
test "should get new" do
|
|
||||||
get new_session_url
|
|
||||||
assert_response :success
|
|
||||||
end
|
|
||||||
|
|
||||||
test "should create session" do
|
|
||||||
user = users(:one)
|
|
||||||
params = {
|
|
||||||
session: {
|
|
||||||
email: user.email,
|
|
||||||
password: "secret"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
post sessions_url, params: params
|
|
||||||
|
|
||||||
assert_redirected_to root_url
|
|
||||||
end
|
|
||||||
|
|
||||||
test "should destroy session" do
|
|
||||||
login(users(:one).email)
|
|
||||||
delete session_url(@session)
|
|
||||||
|
|
||||||
assert_redirected_to new_session_url
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -1,62 +0,0 @@
|
||||||
require "test_helper"
|
|
||||||
|
|
||||||
class UsersControllerTest < ActionDispatch::IntegrationTest
|
|
||||||
setup do
|
|
||||||
@user = users(:one)
|
|
||||||
end
|
|
||||||
|
|
||||||
test "should get index" do
|
|
||||||
login(@user.email)
|
|
||||||
get users_url
|
|
||||||
assert_response :success
|
|
||||||
end
|
|
||||||
|
|
||||||
test "should get new" do
|
|
||||||
get new_user_url
|
|
||||||
assert_response :success
|
|
||||||
end
|
|
||||||
|
|
||||||
test "should create user" do
|
|
||||||
stub_environment(REGISTRATION_ALLOWED: "true") do
|
|
||||||
assert_difference("User.count") do
|
|
||||||
params = {
|
|
||||||
user: {
|
|
||||||
email: "userthree@example.local",
|
|
||||||
password: "secret",
|
|
||||||
password_confirmation: "secret"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
post users_url, params: params
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
assert_redirected_to user_url(User.last)
|
|
||||||
end
|
|
||||||
|
|
||||||
test "should show user" do
|
|
||||||
login(@user.email)
|
|
||||||
get user_url(@user)
|
|
||||||
assert_response :success
|
|
||||||
end
|
|
||||||
|
|
||||||
test "should get edit" do
|
|
||||||
login(@user.email)
|
|
||||||
get edit_user_url(@user)
|
|
||||||
assert_response :success
|
|
||||||
end
|
|
||||||
|
|
||||||
test "should update user" do
|
|
||||||
login(@user.email)
|
|
||||||
patch user_url(@user), params: { user: { email: @user.email, password: "secret", password_confirmation: "secret" } }
|
|
||||||
assert_redirected_to user_url(@user)
|
|
||||||
end
|
|
||||||
|
|
||||||
test "should destroy user" do
|
|
||||||
login(@user.email)
|
|
||||||
assert_difference("User.count", -1) do
|
|
||||||
delete user_url(@user)
|
|
||||||
end
|
|
||||||
|
|
||||||
assert_redirected_to users_url
|
|
||||||
end
|
|
||||||
end
|
|
9
test/fixtures/users.yml
vendored
9
test/fixtures/users.yml
vendored
|
@ -1,9 +0,0 @@
|
||||||
# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
|
|
||||||
|
|
||||||
one:
|
|
||||||
email: userone@example.local
|
|
||||||
password_digest: <%= BCrypt::Password.create("secret") %>
|
|
||||||
|
|
||||||
two:
|
|
||||||
email: usertwo@example.local
|
|
||||||
password_digest: <%= BCrypt::Password.create("secret") %>
|
|
|
@ -1,11 +0,0 @@
|
||||||
require "test_helper"
|
|
||||||
|
|
||||||
class GuestUserTest < ActiveSupport::TestCase
|
|
||||||
setup do
|
|
||||||
@user = GuestUser.new
|
|
||||||
end
|
|
||||||
|
|
||||||
def test_registered_false
|
|
||||||
assert_not @user.registered?
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -1,25 +0,0 @@
|
||||||
require "test_helper"
|
|
||||||
|
|
||||||
class SessionTest < ActiveSupport::TestCase
|
|
||||||
def test_save_when_exists
|
|
||||||
user = users(:one)
|
|
||||||
|
|
||||||
session = Session.new(email: user.email, password: "secret")
|
|
||||||
|
|
||||||
assert session.save
|
|
||||||
end
|
|
||||||
|
|
||||||
def test_save_when_not_exists
|
|
||||||
session = Session.new(email: "fake@example.org", password: "secret")
|
|
||||||
|
|
||||||
assert_not session.save
|
|
||||||
end
|
|
||||||
|
|
||||||
def test_save_when_password_incorrect
|
|
||||||
user = users(:one)
|
|
||||||
|
|
||||||
session = Session.new(email: user.email, password: "bad_password")
|
|
||||||
|
|
||||||
assert_not session.save
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -1,11 +0,0 @@
|
||||||
require "test_helper"
|
|
||||||
|
|
||||||
class UserTest < ActiveSupport::TestCase
|
|
||||||
setup do
|
|
||||||
@user = users(:one)
|
|
||||||
end
|
|
||||||
|
|
||||||
def test_registered_true
|
|
||||||
assert @user.registered?
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -3,7 +3,6 @@ require "application_system_test_case"
|
||||||
class CreditCardBillsTest < ApplicationSystemTestCase
|
class CreditCardBillsTest < ApplicationSystemTestCase
|
||||||
setup do
|
setup do
|
||||||
@credit_card_bill = credit_card_bills(:one)
|
@credit_card_bill = credit_card_bills(:one)
|
||||||
login(users(:one).email)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
test "visiting the index" do
|
test "visiting the index" do
|
||||||
|
|
|
@ -3,7 +3,6 @@ require "application_system_test_case"
|
||||||
class ExpensesTest < ApplicationSystemTestCase
|
class ExpensesTest < ApplicationSystemTestCase
|
||||||
setup do
|
setup do
|
||||||
@expense = expenses(:monthly_expense)
|
@expense = expenses(:monthly_expense)
|
||||||
login(users(:one).email)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
test "visiting the index" do
|
test "visiting the index" do
|
||||||
|
|
|
@ -3,7 +3,6 @@ require "application_system_test_case"
|
||||||
class IncomesTest < ApplicationSystemTestCase
|
class IncomesTest < ApplicationSystemTestCase
|
||||||
setup do
|
setup do
|
||||||
@income = incomes(:included_1)
|
@income = incomes(:included_1)
|
||||||
login(users(:one).email)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
test "visiting the index" do
|
test "visiting the index" do
|
||||||
|
|
|
@ -3,7 +3,6 @@ require "application_system_test_case"
|
||||||
class MembersTest < ApplicationSystemTestCase
|
class MembersTest < ApplicationSystemTestCase
|
||||||
setup do
|
setup do
|
||||||
@member = members(:one)
|
@member = members(:one)
|
||||||
login(users(:one).email)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
test "visiting the index" do
|
test "visiting the index" do
|
||||||
|
|
|
@ -1,22 +0,0 @@
|
||||||
require "application_system_test_case"
|
|
||||||
|
|
||||||
class SessionsTest < ApplicationSystemTestCase
|
|
||||||
setup do
|
|
||||||
@user = users(:one)
|
|
||||||
end
|
|
||||||
|
|
||||||
test "should create session" do
|
|
||||||
login(@user.email)
|
|
||||||
|
|
||||||
assert_text "Session was successfully created"
|
|
||||||
end
|
|
||||||
|
|
||||||
test "should destroy Session" do
|
|
||||||
login(@user.email)
|
|
||||||
|
|
||||||
visit root_url
|
|
||||||
click_on "Log out", match: :first
|
|
||||||
|
|
||||||
assert_text "Session was successfully destroyed"
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -1,50 +0,0 @@
|
||||||
require "application_system_test_case"
|
|
||||||
|
|
||||||
class UsersTest < ApplicationSystemTestCase
|
|
||||||
setup do
|
|
||||||
@user = users(:one)
|
|
||||||
end
|
|
||||||
|
|
||||||
test "visiting the index" do
|
|
||||||
login(@user.email)
|
|
||||||
visit users_url
|
|
||||||
assert_selector "h1", text: "Users"
|
|
||||||
end
|
|
||||||
|
|
||||||
test "should create user" do
|
|
||||||
visit users_url
|
|
||||||
click_on "Sign up"
|
|
||||||
|
|
||||||
stub_environment(REGISTRATION_ALLOWED: "true") do
|
|
||||||
fill_in "Email", with: "userthree@example.local"
|
|
||||||
fill_in "Password", with: "secret"
|
|
||||||
fill_in "Password confirmation", with: "secret"
|
|
||||||
click_on "Create User"
|
|
||||||
|
|
||||||
assert_text "User was successfully created"
|
|
||||||
end
|
|
||||||
click_on "Back"
|
|
||||||
end
|
|
||||||
|
|
||||||
test "should update User" do
|
|
||||||
login(@user.email)
|
|
||||||
visit user_url(@user)
|
|
||||||
click_on "Edit this user", match: :first
|
|
||||||
|
|
||||||
fill_in "Email", with: "newemail@example.local"
|
|
||||||
fill_in "Password", with: "newpassword"
|
|
||||||
fill_in "Password confirmation", with: "newpassword"
|
|
||||||
click_on "Update User"
|
|
||||||
|
|
||||||
assert_text "User was successfully updated"
|
|
||||||
click_on "Back"
|
|
||||||
end
|
|
||||||
|
|
||||||
test "should destroy User" do
|
|
||||||
login(@user.email)
|
|
||||||
visit user_url(users(:two))
|
|
||||||
click_on "Destroy this user", match: :first
|
|
||||||
|
|
||||||
assert_text "User was successfully destroyed"
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -10,19 +10,4 @@ class ActiveSupport::TestCase
|
||||||
fixtures :all
|
fixtures :all
|
||||||
|
|
||||||
# Add more helper methods to be used by all tests here...
|
# Add more helper methods to be used by all tests here...
|
||||||
def login(email, password = "secret")
|
|
||||||
post sessions_url, params: { session: { email: email, password: password } }
|
|
||||||
assert session[:current_user_id].present?
|
|
||||||
end
|
|
||||||
|
|
||||||
def stub_environment(env)
|
|
||||||
old_env = ENV.to_hash
|
|
||||||
ENV.update(env.stringify_keys)
|
|
||||||
|
|
||||||
begin
|
|
||||||
yield
|
|
||||||
ensure
|
|
||||||
ENV.replace(old_env)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue