Compare commits

..

6 Commits

Author SHA1 Message Date
tedspare
11c76d44aa Test
Some checks failed
Deploy to Railway / deploy (push) Has been cancelled
2025-11-18 17:47:19 -05:00
tedspare
84f08d4011 Trigger action
Some checks failed
Deploy to Railway / deploy (push) Has been cancelled
2025-11-18 17:38:03 -05:00
tedspare
716f137bce Run on Linux
Some checks failed
Deploy to Railway / deploy (push) Has been cancelled
2025-11-18 16:44:48 -05:00
tedspare
8a0f206aaa Run Actions on metal
Some checks failed
Deploy to Railway / deploy (push) Has been cancelled
2025-11-18 16:43:17 -05:00
ted
94741c2dbb Merge pull request 'Scaffold web app' (#5) from dexter/test:main into main
Some checks failed
Deploy to Railway / deploy (push) Has been cancelled
Reviewed-on: #5
Reviewed-by: ted <ted@rubriclabs.com>
2025-11-18 21:38:32 +00:00
tedspare
1967b07cd4 Merge remote changes from dexter/test 2025-11-18 16:38:00 -05:00
2 changed files with 17 additions and 25 deletions

View File

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

View File

@@ -1,24 +1,16 @@
{ {
"compilerOptions": { "compilerOptions": {
"baseUrl": ".", "baseUrl": ".",
"paths": { "paths": {
"~/*": [ "~/*": ["./src/lib/*"]
"./src/lib/*" },
] "plugins": [
}, {
"plugins": [ "name": "next"
{ }
"name": "next" ]
} },
] "exclude": ["node_modules"],
}, "extends": "@rubriclab/config/tsconfig",
"exclude": [ "include": ["**/*.ts", "**/*.tsx", ".next/types/**/*.ts"]
"node_modules"
],
"extends": "@rubriclab/config/tsconfig",
"include": [
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
]
} }