This commit is contained in:
Evan Burkey 2025-01-25 21:24:52 -08:00
parent 0b9ca61296
commit cf0115d3d2
3 changed files with 3 additions and 3 deletions

View File

@ -2,6 +2,6 @@ services:
web:
build: .
environment:
- RAILS_MASTER_KEY
- RAILS_MASTER_KEY=fd60586db8062a37df97d839311c4c70
ports:
- "7128:80"

View File

@ -48,7 +48,7 @@ production:
adapter: mysql2
username: <%= Rails.application.credentials.dig(:dbuser) %>
password: <%= Rails.application.credentials.dig(:dbpassword) %>
host: 127.0.0.1
host: 172.17.0.1
port: 3306
database: gambo
cache:

View File

@ -21,5 +21,5 @@ Rails.application.routes.draw do
get "leaderboard", to: "leaderboard#index", as: "leaderboard", defaults: { format: :html }
# Discord
match "/discord" => redirect("https://discord.gg/hQShdPMy7p")
match "discord" => redirect("https://discord.gg/hQShdPMy7p"), via: [ :get ]
end