Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
daskinne committed Jan 22, 2014
1 parent 7e22950 commit d37cd48
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Procfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
web: python roshee/manage.py run_gunicorn --bind=0.0.0.0:$PORT
web: python manage.py run_gunicorn --bind=0.0.0.0:$PORT
13 changes: 13 additions & 0 deletions roshee/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@

TEMPLATE_DEBUG = True

ALLOWED_HOSTS = []


# Application definition

INSTALLED_APPS = (
Expand All @@ -49,6 +52,16 @@
WSGI_APPLICATION = 'roshee.wsgi.application'


# Database
# https://docs.djangoproject.com/en/1.6/ref/settings/#databases

DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}

# Internationalization
# https://docs.djangoproject.com/en/1.6/topics/i18n/

Expand Down

0 comments on commit d37cd48

Please sign in to comment.