async refactor & docker deploy environment
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2025-09-05 12:04:58 +09:00
parent 0d3bcdfc64
commit d17f0f5507
15 changed files with 361 additions and 187 deletions

5
init_db.py Normal file
View File

@@ -0,0 +1,5 @@
import asyncio
from db import init_db
if __name__ == "__main__":
asyncio.run(init_db())