We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c65cd24 commit 55cae7bCopy full SHA for 55cae7b
backend/package.json
@@ -6,7 +6,7 @@
6
"scripts": {
7
"dev": "tsx index.ts",
8
"build": "tsc -b",
9
- "start": "node -r tsconfig-paths/register dist/index.js",
+ "start": "tsc && node -r tsconfig-paths/register dist/index.js",
10
"lint": "eslint .",
11
"format": "prettier --write .",
12
"format:check": "prettier --check .",
backend/railway.json
@@ -0,0 +1,18 @@
1
+{
2
+ "$schema": "https://railway.com/railway.schema.json",
3
+ "build": {
4
+ "builder": "NIXPACKS"
5
+ },
+ "deploy": {
+ "runtime": "V2",
+ "numReplicas": 1,
+ "sleepApplication": false,
+ "multiRegionConfig": {
+ "europe-west4-drams3a": {
+ "numReplicas": 1
13
+ }
14
15
+ "restartPolicyType": "ON_FAILURE",
16
+ "restartPolicyMaxRetries": 10
17
18
+}
0 commit comments