mirror of
https://github.com/lingke-net/Space.Tab.git
synced 2026-09-12 05:45:17 +08:00
45 lines
947 B
Bash
45 lines
947 B
Bash
NODE_ENV=development
|
|
|
|
# PORT
|
|
PORT=3001
|
|
|
|
VITE_VERSON_ABOUT=2.1.2
|
|
|
|
# 高德地图密钥
|
|
VITE_MAMP_KEY=your_amap_key_here
|
|
|
|
# 三个模式:beta测试、production发布模式、none不显示版本Avatar模式
|
|
VITE_ABOUTSERVER=beta
|
|
|
|
# 开发水印
|
|
VITE_DEV_WHATER=true
|
|
|
|
#极验验证信息
|
|
VITE_GEETEST_CAPTCHA_ID=your_geetest_id_here
|
|
VITE_GEETEST_CAPTCHA_KEY=your_geetest_key_here
|
|
|
|
# OneAccount 授权信息
|
|
VITE_OA_ID=your_oa_id_here
|
|
VITE_OA_SECRET=your_oa_secret_here
|
|
VITE_OA_URL=your_oa_url_here
|
|
|
|
# Database configuration
|
|
MYSQL_HOST=localhost
|
|
MYSQL_PORT=3306
|
|
MYSQL_USER=your_mysql_user_here
|
|
MYSQL_PASSWORD=your_mysql_password_here
|
|
MYSQL_DATABASE=your_mysql_database_here
|
|
|
|
# Redis configuration
|
|
REDIS_HOST=localhost
|
|
REDIS_PORT=6379
|
|
REDIS_PASSWORD=your_redis_password_here
|
|
REDIS_DATABASE=0
|
|
|
|
# Email configuration
|
|
EMAIL_HOST=your_email_host_here
|
|
EMAIL_PORT=your_email_port_here
|
|
|
|
# JWT configuration
|
|
JWT_SECRET=your_jwt_secret_here
|
|
JWT_EXPIRES_IN=72h |