Railway test
This commit is contained in:
parent
063b85e816
commit
e54ad8e6ed
5 changed files with 649 additions and 455 deletions
15
.github/workflows/fly.yml
vendored
15
.github/workflows/fly.yml
vendored
|
@ -1,15 +0,0 @@
|
|||
name: Fly Deploy
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
jobs:
|
||||
deploy:
|
||||
name: Deploy app
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: superfly/flyctl-actions/setup-flyctl@master
|
||||
- run: flyctl deploy --remote-only
|
||||
env:
|
||||
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
|
|
@ -9,14 +9,7 @@ A scrum poker tool that helps agile teams plan their sprints in real-time.
|
|||
- Rendering method: SSR
|
||||
- Hosting: Fly
|
||||
- ORM: Drizzle ORM
|
||||
- Database: Turso (libSQL)
|
||||
|
||||
## Environment Vars
|
||||
|
||||
Add variables to the following places:
|
||||
|
||||
- Github Secrets: FLY_API_TOKEN
|
||||
- Fly Secrets: Everything in .env
|
||||
- Database: Postgres
|
||||
|
||||
## Versioning
|
||||
|
||||
|
|
|
@ -18,7 +18,6 @@ export default function Index() {
|
|||
<h2 className="card-title">Features:</h2>
|
||||
<ul>
|
||||
<li>🚀 Real-time voting!</li>
|
||||
<li>🚀 Servers in Seattle, Paris, and Tokyo! More to come!</li>
|
||||
<li>🚀 Customizable room name and vote scale!</li>
|
||||
<li>🚀 CSV Reports for every room!</li>
|
||||
<li>🚀 100% free and open-source... forever!</li>
|
||||
|
|
26
package.json
26
package.json
|
@ -18,30 +18,30 @@
|
|||
"@remix-run/serve": "^2.8.1",
|
||||
"csv42": "^5.0.0",
|
||||
"dotenv": "^16.4.5",
|
||||
"drizzle-orm": "^0.30.4",
|
||||
"drizzle-orm": "^0.30.6",
|
||||
"ioredis": "^5.3.2",
|
||||
"isbot": "5.1.2",
|
||||
"lucide-react": "^0.359.0",
|
||||
"postgres": "^3.4.3",
|
||||
"isbot": "5.1.3",
|
||||
"lucide-react": "^0.363.0",
|
||||
"postgres": "^3.4.4",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0",
|
||||
"remix-utils": "^7.5.0",
|
||||
"svix": "^1.21.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@flydotio/dockerfile": "^0.5.3",
|
||||
"@flydotio/dockerfile": "^0.5.4",
|
||||
"@remix-run/dev": "^2.8.1",
|
||||
"@remix-run/eslint-config": "^2.8.1",
|
||||
"@types/react": "^18.2.67",
|
||||
"@types/react-dom": "^18.2.22",
|
||||
"autoprefixer": "^10.4.18",
|
||||
"daisyui": "^4.7.3",
|
||||
"@types/react": "^18.2.73",
|
||||
"@types/react-dom": "^18.2.23",
|
||||
"autoprefixer": "^10.4.19",
|
||||
"daisyui": "^4.9.0",
|
||||
"drizzle-kit": "^0.20.14",
|
||||
"eslint": "^8.57.0",
|
||||
"postcss": "^8.4.37",
|
||||
"tailwindcss": "^3.4.1",
|
||||
"typescript": "^5.4.2",
|
||||
"vite": "^5.1.6",
|
||||
"postcss": "^8.4.38",
|
||||
"tailwindcss": "^3.4.3",
|
||||
"typescript": "^5.4.3",
|
||||
"vite": "^5.2.7",
|
||||
"vite-tsconfig-paths": "^4.3.2"
|
||||
},
|
||||
"engines": {
|
||||
|
|
1053
pnpm-lock.yaml
generated
1053
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue