From 2aca4a464059b62cb4697fe072fc1eeef4cc3e8b Mon Sep 17 00:00:00 2001 From: Sean Greaves <23040351+ribenamaplesyrup@users.noreply.github.com> Date: Tue, 22 Oct 2024 19:12:54 +0100 Subject: [PATCH] Create railway.toml --- railway.toml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 railway.toml 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"