From 3c41bc5dcf873739e50e3eb4f77b697c45791db7 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Sun, 19 Oct 2025 19:55:38 +0000 Subject: [PATCH 1/2] feat: Add Nixpacks configuration and start script Co-authored-by: lukeslakemail --- nixpacks.toml | 12 ++++++++++++ package.json | 4 ++++ 2 files changed, 16 insertions(+) create mode 100644 nixpacks.toml diff --git a/nixpacks.toml b/nixpacks.toml new file mode 100644 index 0000000..53b1928 --- /dev/null +++ b/nixpacks.toml @@ -0,0 +1,12 @@ +[phases.install] +cmds = [ + "yarn install --frozen-lockfile" +] + +[phases.build] +cmds = [ + "yarn build" +] + +[start] +cmd = "yarn start" diff --git a/package.json b/package.json index 866efba..905b8c3 100644 --- a/package.json +++ b/package.json @@ -7,11 +7,15 @@ "dev": "vite dev", "build": "vite build", "preview": "vite preview", + "start": "node build", "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", "lint": "prettier --plugin-search-dir . --check . && eslint .", "format": "prettier --plugin-search-dir . --write ." }, + "engines": { + "node": ">=18" + }, "devDependencies": { "@floating-ui/dom": "^1.6.1", "@skeletonlabs/skeleton": "^2.8.0", From f9e4985662d0818c1bdbb4634afec7d5f0950ff5 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Sun, 19 Oct 2025 20:08:19 +0000 Subject: [PATCH 2/2] Remove Nixpacks configuration Co-authored-by: lukeslakemail --- nixpacks.toml | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 nixpacks.toml diff --git a/nixpacks.toml b/nixpacks.toml deleted file mode 100644 index 53b1928..0000000 --- a/nixpacks.toml +++ /dev/null @@ -1,12 +0,0 @@ -[phases.install] -cmds = [ - "yarn install --frozen-lockfile" -] - -[phases.build] -cmds = [ - "yarn build" -] - -[start] -cmd = "yarn start"