Commit c131a90e by Jonathan Piacenti

Create structure and append gitignore for latest workbench.

parent 32f7e7b3
...@@ -5,6 +5,8 @@ ...@@ -5,6 +5,8 @@
/workbench.* /workbench.*
/dist /dist
/templates /templates
/var
*.iml *.iml
.idea/* .idea/*
dump.rdb
problem_builder.tests.* problem_builder.tests.*
...@@ -24,6 +24,12 @@ if __name__ == "__main__": ...@@ -24,6 +24,12 @@ if __name__ == "__main__":
# Configure a range of ports in case the default port of 8081 is in use # Configure a range of ports in case the default port of 8081 is in use
os.environ.setdefault("DJANGO_LIVE_TEST_SERVER_ADDRESS", "localhost:8081-8099") os.environ.setdefault("DJANGO_LIVE_TEST_SERVER_ADDRESS", "localhost:8081-8099")
try:
os.mkdir('var')
except OSError:
# May already exist.
pass
from django.conf import settings from django.conf import settings
settings.INSTALLED_APPS += ("problem_builder", ) settings.INSTALLED_APPS += ("problem_builder", )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment