Skip to content

Commit 8da62a3

Browse files
holgerd77holgerd77
holgerd77
authored and
holgerd77
committedJun 27, 2012
First commit
0 parents  commit 8da62a3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+806
-0
lines changed
 

‎.gitignore

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
*.py[co]
2+
.DS_Store
3+
*.sql
4+
*.gz
5+
*.zip
6+
*.tar
7+
*.log
8+
.project
9+
.pydevproject

‎manage.py

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/usr/bin/env python
2+
import os
3+
import sys
4+
5+
if __name__ == "__main__":
6+
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "opendata_tools_org.settings")
7+
8+
from django.core.management import execute_from_command_line
9+
10+
execute_from_command_line(sys.argv)

0 commit comments

Comments
 (0)
Please sign in to comment.