diff --git a/railway.toml b/railway.toml new file mode 100644 index 0000000..d1265c8 --- /dev/null +++ b/railway.toml @@ -0,0 +1,14 @@ +[build] +builder = "nixpacks" +buildCommand = """ + conda create -n candystore python=3.10 -y && \ + conda activate candystore && \ + pip install -e . && \ + jupyter nbextension enable --py --sys-prefix ipyleaflet +""" + +[deploy] +startCommand = "echo Deployment started" +healthcheckPath = "/" +healthcheckTimeout = 100 +restartPolicyType = "never"