
- Updated alembic.ini to use the async SQLite driver\n- Updated alembic env.py to support async operations\n- Created storage directory for database files\n- Added .gitignore to exclude temporary files and databases\n\ngenerated with BackendIM... (backend.im)
28 lines
280 B
Plaintext
28 lines
280 B
Plaintext
# Python cache files
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Distribution / packaging
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
.env/
|
|
|
|
# SQLite databases
|
|
*.sqlite
|
|
*.sqlite3
|
|
*.db
|
|
|
|
# IDE directories
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Local storage directory
|
|
/app/storage/ |