* Add Redis and Sidekiq * Rename PreviewGenerationMonitor * Update production.rb require master key * Initialize AWS at application start * Add fallbacks for credentials * Add logging * Create railway.toml
16 lines
288 B
TOML
16 lines
288 B
TOML
[phases.setup]
|
|
nixPkgs = [
|
|
"imagemagick",
|
|
"ghostscript", # For PDF/PS operations
|
|
"pkgconfig", # For gem compilation
|
|
"libmagickwand" # ImageMagick C library
|
|
]
|
|
|
|
[phases.install]
|
|
dependsOn = ["setup"]
|
|
|
|
[phases.build]
|
|
dependsOn = ["install"]
|
|
|
|
[start]
|
|
cmd = "bin/rails server"
|