Set up database.py
:wq A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A A B B B B B B A A
This commit is contained in:
8
main.py
8
main.py
@@ -1,5 +1,13 @@
|
|||||||
from fastapi import FastAPI
|
from fastapi import FastAPI
|
||||||
|
|
||||||
|
from . import models
|
||||||
|
from .database import engine
|
||||||
|
|
||||||
|
# This line tells SQLAlchemy to create all the tables based on the models
|
||||||
|
# we defined. It will create the `multichat_overlay.db` file with the
|
||||||
|
# 'users' and 'settings' tables if they don't exist.
|
||||||
|
models.Base.metadata.create_all(bind=engine)
|
||||||
|
|
||||||
app = FastAPI()
|
app = FastAPI()
|
||||||
|
|
||||||
@app.get("/")
|
@app.get("/")
|
||||||
|
|||||||
Reference in New Issue
Block a user