Skip to content
Merged
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 cinetrack-app/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ dist-ssr
.env
.env.*
!.env.example
infra/data

# Editor directories and files
.vscode/*
Expand Down
6 changes: 3 additions & 3 deletions cinetrack-app/client/.env.example
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Client Environment Variables
# Copy this file to .env and fill in your values

# TMDB API Read Access Token (required)
# Used as fallback if backend proxy fails
# TMDB API Read Access Token (optional - only needed as fallback)
# The server proxies all TMDB requests, so this is only used if proxy fails
# Get one at: https://www.themoviedb.org/settings/api
VITE_TMDB_API_READ_ACCESS_TOKEN=your_tmdb_api_read_access_token
VITE_TMDB_API_READ_ACCESS_TOKEN=

# API Base URL (optional, for development when server runs separately)
# Leave empty in production as the client is served by the backend
Expand Down
3 changes: 2 additions & 1 deletion cinetrack-app/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@
"preview": "vite preview"
},
"dependencies": {
"framer-motion": "^12.23.26",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-icons": "^5.5.0",
"react-router-dom": "^7.11.0",
"scheduler": "^0.27.0",
"socket.io-client": "^4.8.1",
"use-context-selector": "^2.0.0",
"zustand": "^5.0.9"
},
"devDependencies": {
Expand Down
Loading
Loading