Skip to content

Instantly share code, notes, and snippets.

@repcsi
Created May 24, 2021 20:03
Show Gist options
  • Save repcsi/1eabd06b8dd47efecec3421d23b6604a to your computer and use it in GitHub Desktop.
Save repcsi/1eabd06b8dd47efecec3421d23b6604a to your computer and use it in GitHub Desktop.
pycharm + django .gitignore
#pycharm related stuff
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/**/usage.statistics.xml
.idea/**/dictionaries
.idea/**/shelf
.idea/**/inspectionProfiles
# Sensitive or high-churn files
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
.idea/**/dbnavigator.xml
#python virtualenv should not be synced
venv/
#we will not track pyc files
**/__pycache__/
*.pyc
#I wont be using pycharms own gitignore
.idea/**/.gitignore
#migrations
*/migrations/
#static content
/static/
/staticfiles/
#email tests
/sent_emails/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment