mirror of
https://gitee.com/mao-peng/MangoTestingPlatform.git
synced 2025-12-06 20:04:44 +08:00
23 lines
673 B
Bash
23 lines
673 B
Bash
# =========================
|
||
# MySQL 配置
|
||
# =========================
|
||
MYSQL_ROOT_PASSWORD=mP123456&
|
||
MYSQL_DATABASE=mango_server
|
||
MYSQL_USER=user
|
||
MYSQL_PASSWORD=mP123456&
|
||
MYSQL_PORT=3306
|
||
|
||
# =========================
|
||
# MinIO 配置
|
||
# =========================
|
||
MINIO_ROOT_USER=admin
|
||
MINIO_ROOT_PASSWORD=mP123456
|
||
MINIO_API_PORT=9000
|
||
MINIO_CONSOLE_PORT=9001
|
||
|
||
# =========================
|
||
# Django / Vue / 执行器
|
||
# =========================
|
||
DJANGO_ENV=test # 可选值:dev/test/prod/master
|
||
VUE_ENV=test # 可选值:dev/test/prod/master
|
||
EXECUTOR_TYPE=pytest_web # 可选值:pytest/ pytest_web / web_ui / android_ui / 空=不启任何执行器 |