mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-21 04:46:26 +00:00
24 lines
394 B
Bash
24 lines
394 B
Bash
# 数据库配置
|
|
MYSQL_ROOT_PASSWORD=your_mysql_root_password
|
|
MYSQL_DATABASE=fastapiadmin
|
|
MYSQL_USER=fastapiadmin
|
|
MYSQL_PASSWORD=your_mysql_password
|
|
MYSQL_PORT=3306
|
|
|
|
# Redis配置
|
|
REDIS_PASSWORD=your_redis_password
|
|
REDIS_PORT=6379
|
|
|
|
# 后端配置
|
|
BACKEND_PORT=8001
|
|
|
|
# Nginx配置
|
|
HTTP_PORT=80
|
|
HTTPS_PORT=443
|
|
|
|
# 项目配置
|
|
PROJECT_NAME=FastapiAdmin
|
|
|
|
# 部署环境 (dev/prod)
|
|
DEPLOY_ENV=prod
|