Update .gitignore

This commit is contained in:
Parker M. 2024-06-21 17:40:32 -05:00
parent a4107d0976
commit 8d72466629
No known key found for this signature in database
GPG Key ID: 95CD2E0C7E329F2A
2 changed files with 3 additions and 2 deletions

3
.gitignore vendored
View File

@ -1,4 +1,5 @@
.env .env
data.db data.db
__pycache__ __pycache__
.DS_Store .DS_Store
internal_notes.txt

View File

@ -6,4 +6,4 @@ from routes import app
if __name__ == '__main__': if __name__ == '__main__':
init_db() init_db()
server = uvicorn.run(app=app, host="0.0.0.0", port=5252) server = uvicorn.run(app=app, host="0.0.0.0", port=5252)