add: dockerfile

This commit is contained in:
2025-07-20 23:24:00 +05:00
parent c7f6baac5d
commit e59669f66a
5 changed files with 53 additions and 1 deletions

View File

@ -2,7 +2,7 @@ from motor.motor_asyncio import AsyncIOMotorClient
from app.core.config import MONGO_URI
client = AsyncIOMotorClient(MONGO_URI)
db = client["minecraft_auth"]
db = client["minecraft-api"]
users_collection = db["users"]
sessions_collection = db["sessions"]