Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ PORT= # The port to run the server at
TMDB_ACCESS_TOKEN= # Your TMDB API access token
TIVO_API_URL= # The TiVo API URL
DATABASE_URL= # Your PostgreSQL URL
JWT= # Your JWT secret
22 changes: 22 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
"lint": "eslint .",
"start": "npm install && npm run build && node dist/index.js",
"dev": "tsx watch src/index.ts",
"drzzle:studio": "drizzle-kit studio"
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio"
},
"engines": {
"node": "v23.5.0",
Expand Down Expand Up @@ -64,6 +65,7 @@
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.11.5",
"node-cache": "^5.1.2",
"node-fetch": "^3.3.2",
"pg": "^8.13.1",
"reflect-metadata": "^0.2.2",
Expand Down
Loading