Prepare dev instructure

This commit is contained in:
kbe
2025-08-16 09:00:38 +02:00
parent d96fb4be95
commit ed659c423e
15 changed files with 1434 additions and 27 deletions

View File

@@ -10,11 +10,11 @@
# https://dev.mysql.com/doc/refman/5.7/en/password-hashing.html
#
default: &default
adapter: mysql2
adapter: mysql2 # Moved out from trilogy
encoding: utf8mb4
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
username: root
password:
username: <%= ENV.fetch("DB_USERNAME") { "root" } %>
password: <%= ENV.fetch("DB_PASSWORD") { "root" } %>
host: <%= ENV.fetch("DB_HOST") { "127.0.0.1" } %>
development:

View File

@@ -10,5 +10,5 @@ Rails.application.routes.draw do
# get "service-worker" => "rails/pwa#service_worker", as: :pwa_service_worker
# Defines the root path route ("/")
# root "posts#index"
root "pages#home"
end