24 lines
533 B
Plaintext
24 lines
533 B
Plaintext
# 开发环境配置
|
||
PORT=3201
|
||
|
||
DB_HOST=localhost
|
||
DB_PORT=5432
|
||
DB_USER=
|
||
DB_PASSWORD=
|
||
DB_DATABASE=vest_mind_dev
|
||
# DB_DATABASE_TEST=vest_mind
|
||
|
||
JWT_SECRET=vest_thinking_key
|
||
JWT_EXPIRES_IN=7d
|
||
|
||
# 资源上传配置
|
||
STORAGE_TYPE=local
|
||
|
||
ADMIN_USERNAME=joey
|
||
ADMIN_PASSWORD=joey5628
|
||
ADMIN_EMAIL=zhangyi5628@126.com
|
||
ADMIN_NICKNAME=思考的Joey
|
||
ADMIN_ROLE=super_admin
|
||
|
||
STORAGE_PATH=./uploads # 存储路径(默认:./uploads)
|
||
STORAGE_BASE_URL=http://localhost:3201/uploads # 访问URL(默认:http://localhost:3201/uploads) |