Skip to content

Commit c047414

Browse files
committed
Added pycache in gitignore
1 parent 0db2e9d commit c047414

File tree

8 files changed

+3
-3
lines changed

8 files changed

+3
-3
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
./docker/data
1+
docker/data
2+
__pycache__
23
.idea

app/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__pycache__
-842 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

app/core/bootstrap/listeners.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ def init_listeners(app_: FastAPI) -> None:
66
@app_.on_event("startup")
77
async def startup():
88
await database.init()
9-
await database.create_all()
10-
119
print("Database connected")
1210

1311
@app_.on_event("shutdown")

0 commit comments

Comments
 (0)