feat: Set up initial Django project
This commit is contained in:
parent
bd8192f70e
commit
7de3c22ee6
23
.gitignore
vendored
23
.gitignore
vendored
|
|
@ -1 +1,24 @@
|
|||
.aider*
|
||||
# Virtual environment
|
||||
venv/
|
||||
|
||||
# Python bytecode
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
|
||||
# Django
|
||||
*.log
|
||||
local_settings.py
|
||||
db.sqlite3
|
||||
db.sqlite3-journal
|
||||
|
||||
# Environment variables
|
||||
.env
|
||||
|
||||
# IDE-specific files
|
||||
.vscode/
|
||||
.idea/
|
||||
|
||||
# OS-specific files
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
|
|
|||
0
leadsdb/settings.py
Normal file
0
leadsdb/settings.py
Normal file
Loading…
Reference in a new issue