소스 검색

Updating Django gitignore for various reasons

Removing:
- static/uploaded/**/* since there is no default
  for upload paths (configurable)
- *.mo because it's a best practice to keep them
  close to the po files and update before release
- *.pyc since that's covered by the Python gitignore file

Adding:
- local_settings.py because it's a best practice
  for Django projects (next to settings.py)
Jannis Leidel 14 년 전
부모
커밋
42d3cf083f
1개의 변경된 파일1개의 추가작업 그리고 5개의 파일을 삭제
  1. 1 5
      Django.gitignore

+ 1 - 5
Django.gitignore

@@ -1,7 +1,3 @@
-#for python/django
 *.log
-static/uploaded/**/*
-*.mo
 *.pot
-*.pyc
-
+local_settings.py