diff --git a/server/.env.example b/server/.env.example new file mode 100644 index 0000000..708b824 --- /dev/null +++ b/server/.env.example @@ -0,0 +1,11 @@ +# Flask 配置 +FLASK_APP=app.py +FLASK_ENV=development +SECRET_KEY=your-secret-key-here + +# 数据库配置 +DATABASE_PATH=kinecho.db + +# 服务器配置 +HOST=0.0.0.0 +PORT=8000