Files
neomovies-api/.env.example

29 lines
576 B
Plaintext
Raw Normal View History

2025-08-08 16:47:02 +00:00
# Required
MONGO_URI=
MONGO_DB_NAME=database
2025-08-07 13:47:42 +00:00
TMDB_ACCESS_TOKEN=your_tmdb_access_token
JWT_SECRET=your_jwt_secret_key
2025-08-08 16:47:02 +00:00
# Service
PORT=3000
BASE_URL=http://localhost:3000
NODE_ENV=development
# Email (Gmail)
GMAIL_USER=
2025-08-07 13:47:42 +00:00
GMAIL_APP_PASSWORD=your_gmail_app_password
2025-08-08 16:47:02 +00:00
# Players
LUMEX_URL=
2025-08-07 13:47:42 +00:00
ALLOHA_TOKEN=your_alloha_token
2025-08-11 18:36:02 +00:00
VIBIX_TOKEN
2025-08-07 13:47:42 +00:00
2025-08-08 16:47:02 +00:00
# Torrents (RedAPI)
REDAPI_BASE_URL=http://redapi.cfhttp.top
REDAPI_KEY=your_redapi_key
2025-08-07 13:47:42 +00:00
2025-08-08 16:47:02 +00:00
# Google OAuth
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
GOOGLE_REDIRECT_URL=http://localhost:3000/api/v1/auth/google/callback
FRONTEND_URL=http://localhost:3001