Skip to content
This repository has been archived by the owner on Nov 30, 2023. It is now read-only.

Fixes to django container #7

Merged
merged 1 commit into from
Mar 6, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions dev-containers/django-container/.vscode/devContainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "Django",
"dockerFile": "dev-container.dockerfile",
"appPort": 8080,
"extensions": [
"ms-python.python",
"batisteo.vscode-django"
Expand Down
2 changes: 1 addition & 1 deletion dev-containers/django-container/web_project/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True

ALLOWED_HOSTS = []
ALLOWED_HOSTS = ['0.0.0.0']


# Application definition
Expand Down