16 lines
180 B
Text
16 lines
180 B
Text
# Ignore virtual environment
|
|
venv/
|
|
|
|
# Ignore Django migrations
|
|
**/migrations/
|
|
|
|
# Ignore media files
|
|
**/media/
|
|
|
|
# Ignore pycache
|
|
**/__pycache__/
|
|
|
|
# Ignore static files
|
|
**/static/
|
|
|
|
|