hensei-api/railway.toml
Justin Edmund ad2e2cc028
More embed image bandaids (#175)
* Only re-index search when records are updated

* Add logs and fixes

* Add preview_s3_key to Parties

* Add some extra packages to Nixfile

* Add logging around custom font use
2025-01-18 22:32:13 -08:00

27 lines
478 B
TOML

[phases.setup]
nixPkgs = [
"imagemagick",
# For PDF/PS operations
"ghostscript",
# For gem compilation
"pkgconfig",
# ImageMagick C library
"libmagickwand",
# Font configuration
"fontconfig",
# A good fallback font
"dejavu_fonts",
# Arial-compatible fonts
"liberation_ttf",
# Font rendering
"freetype"
]
[phases.install]
dependsOn = ["setup"]
[phases.build]
dependsOn = ["install"]
[start]
cmd = "bin/rails server"