535d97a70c
17-table PostgreSQL schema with full Chinese column comments, FastAPI project structure (admin/common/modules), DSL rule files, and schema migration scripts.
21 lines
310 B
Python
21 lines
310 B
Python
"""开发启动脚本。"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import uvicorn
|
|
|
|
from fastapi_admin.config import APP_HOST, APP_PORT
|
|
|
|
|
|
def main():
|
|
uvicorn.run(
|
|
"fastapi_admin.app:app",
|
|
host=APP_HOST,
|
|
port=APP_PORT,
|
|
reload=True,
|
|
)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|