mirror of
https://gitlab.com/foxixus/neomovies-api.git
synced 2025-10-27 17:38:51 +05:00
Rewrite api to Go
This commit is contained in:
26
.env.example
Normal file
26
.env.example
Normal file
@@ -0,0 +1,26 @@
|
||||
# MongoDB Configuration
|
||||
MONGO_URI=mongodb://localhost:27017/neomovies
|
||||
|
||||
# TMDB API Configuration
|
||||
TMDB_ACCESS_TOKEN=your_tmdb_access_token
|
||||
|
||||
# JWT Configuration
|
||||
JWT_SECRET=your_jwt_secret_key
|
||||
|
||||
# Email Configuration (для уведомлений)
|
||||
GMAIL_USER=your_gmail@gmail.com
|
||||
GMAIL_APP_PASSWORD=your_gmail_app_password
|
||||
|
||||
# Players Configuration
|
||||
LUMEX_URL=your_lumex_player_url
|
||||
ALLOHA_TOKEN=your_alloha_token
|
||||
|
||||
# Server Configuration
|
||||
PORT=3000
|
||||
BASE_URL=http://localhost:3000
|
||||
NODE_ENV=development
|
||||
|
||||
# Production Configuration (для Vercel)
|
||||
# MONGO_URI=mongodb+srv://username:password@cluster.mongodb.net/neomovies
|
||||
# BASE_URL=https://your-app.vercel.app
|
||||
# NODE_ENV=production
|
||||
Reference in New Issue
Block a user