Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3
ruby-version: .ruby-version
bundler-cache: true
- name: Deploy to demo
run: bundle exec kamal deploy -P --version=edge
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.1
3.4.4
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM node:20.11.0-alpine AS node
FROM ruby:3.3.1-alpine AS base
FROM ruby:3.4.4-alpine AS base
FROM base AS builder

ENV RAILS_ENV production
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -453,4 +453,4 @@ DEPENDENCIES
webmock (~> 3.25.0)

BUNDLED WITH
2.5.9
2.6.7
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ docker pull ghcr.io/blackcandy-org/blackcandy:edge

### Requirements

- Ruby 3.3
- Ruby 3.4
- Node.js 20
- libvips
- FFmpeg
Expand Down
3 changes: 0 additions & 3 deletions config/environments/production.rb
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,4 @@
# config.host_authorization = { exclude: ->(request) { request.path == "/up" } }

config.active_record.async_query_executor = :global_thread_pool

# Disable warning of running SQLite in production
config.active_record.sqlite3_production_warning = false
end