All checks were successful
Build Frontend / Build Frontend (push) Successful in 9s
55 lines
1.4 KiB
Bash
55 lines
1.4 KiB
Bash
# Server Configuration
|
|
NODE_ENV=production
|
|
PORT=3000
|
|
HOST=0.0.0.0
|
|
|
|
# Database
|
|
MONGODB_URI=mongodb://turbotrades:20yBBj!0@localhost:27017/turbotrades?authSource=admin
|
|
#MONGODB_URI=mongodb://localhost:27017/turbotrades
|
|
# Session
|
|
SESSION_SECRET=5b4051d25c348e06ffebf77bc66fcb8db9c5b32f58eb8c6fac6c937b666fc733
|
|
|
|
# JWT Secrets - CHANGE THESE IN PRODUCTION!
|
|
JWT_ACCESS_SECRET=79d3b9c85125cc4ff31c87be58cfa9e0933a9f61da52925a2b87812083ce66a1
|
|
JWT_REFRESH_SECRET=5c41ea8b1e269d71fb24af0443b35905e0988cb01356007f7ff341fe0eab7ce1
|
|
JWT_ACCESS_EXPIRY=15m
|
|
JWT_REFRESH_EXPIRY=7d
|
|
|
|
# Steam OpenID - GET YOUR API KEY FROM: https://steamcommunity.com/dev/apikey
|
|
STEAM_API_KEY=14C1687449C5C4CB79953094DB8E6CC0
|
|
STEAM_REALM=https://api.turbotrades.dev
|
|
STEAM_RETURN_URL=https://api.turbotrades.dev/auth/steam/return
|
|
|
|
|
|
#Steam apis key - Loading the inventory
|
|
STEAM_APIS_KEY=DONTABUSEORPEPZWILLNAGASAKI
|
|
ENABLE_PRICE_UPDATES="true"
|
|
|
|
# Cookie Settings
|
|
COOKIE_DOMAIN=.turbotrades.dev
|
|
COOKIE_SECURE=true
|
|
COOKIE_SAME_SITE=lax
|
|
|
|
# CORS
|
|
CORS_ORIGIN=https://turbotrades.dev
|
|
|
|
|
|
# Rate Limiting
|
|
RATE_LIMIT_MAX=100
|
|
RATE_LIMIT_TIMEWINDOW=60000
|
|
|
|
# DEV BOT BYPASS - set to false on prod
|
|
BYPASS_BOT_REQUIREMENT=true
|
|
|
|
# Email Configuration (for future implementation)
|
|
SMTP_HOST=mail.privateemail.com
|
|
SMTP_PORT=587
|
|
SMTP_USER=spam@turbotrades.gg
|
|
SMTP_PASS=20yBBj!0
|
|
EMAIL_FROM=noreply@turbotrades.gg
|
|
|
|
# WebSocket
|
|
WS_PING_INTERVAL=30000
|
|
WS_MAX_PAYLOAD=1048576
|
|
WS_URL=wss://api.turbotrades.dev/ws
|