9 lines
367 B
Python
9 lines
367 B
Python
import os
|
|
|
|
class Config:
|
|
SECRET_KEY = os.getenv('SECRET_KEY', 'jagxor-xokwis-dekqE6')
|
|
BASE_API_URL = os.getenv('BASE_API_URL', 'http://127.0.0.1:8000')
|
|
WX_APP_ID = os.getenv('WX_APP_ID', 'wx2c0e64b724b6dec4')
|
|
WX_APP_SECRET = os.getenv('WX_APP_SECRET', 'b5330aece22ce5cf5df3048cb28d1558')
|
|
WX_QRCODE_API = 'https://api.weixin.qq.com/wxa/getwxacode'
|