diff --git a/railway.toml b/railway.toml new file mode 100644 index 0000000..2cdf95e --- /dev/null +++ b/railway.toml @@ -0,0 +1,16 @@ +[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"