Compare commits

..

1 Commits

Author SHA1 Message Date
tedspare
d4761dee8d Resolve merge conflix
Some checks failed
Deploy to Railway / deploy (push) Has been cancelled
2025-11-18 16:26:18 -05:00
2 changed files with 25 additions and 17 deletions

View File

@@ -7,8 +7,7 @@ on:
jobs:
deploy:
runs-on:
- host
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
@@ -34,3 +33,4 @@ jobs:
if [ -n "${RAILWAY_SERVICE_ID:-}" ]; then SERVICE_FLAG="--service ${RAILWAY_SERVICE_ID}"; fi
# Deploy current repo; --yes to skip prompts
railway up $PROJECT_FLAG $SERVICE_FLAG --yes

View File

@@ -2,7 +2,9 @@
"compilerOptions": {
"baseUrl": ".",
"paths": {
"~/*": ["./src/lib/*"]
"~/*": [
"./src/lib/*"
]
},
"plugins": [
{
@@ -10,7 +12,13 @@
}
]
},
"exclude": ["node_modules"],
"exclude": [
"node_modules"
],
"extends": "@rubriclab/config/tsconfig",
"include": ["**/*.ts", "**/*.tsx", ".next/types/**/*.ts"]
"include": [
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
]
}