├── .devcontainer ├── devcontainer.json └── icon.svg ├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── hello_world ├── __init__.py ├── asgi.py ├── core │ └── views.py ├── settings.py ├── static │ ├── Octocat.png │ └── main.css ├── templates │ └── index.html ├── urls.py └── wsgi.py ├── manage.py └── requirements.txt /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codespaces-django/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codespaces-django/HEAD/.devcontainer/icon.svg -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codespaces-django/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codespaces-django/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | db.sqlite3 2 | __pycache__/ 3 | staticfiles/ 4 | .env 5 | venv/ 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codespaces-django/HEAD/README.md -------------------------------------------------------------------------------- /hello_world/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hello_world/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codespaces-django/HEAD/hello_world/asgi.py -------------------------------------------------------------------------------- /hello_world/core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codespaces-django/HEAD/hello_world/core/views.py -------------------------------------------------------------------------------- /hello_world/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codespaces-django/HEAD/hello_world/settings.py -------------------------------------------------------------------------------- /hello_world/static/Octocat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codespaces-django/HEAD/hello_world/static/Octocat.png -------------------------------------------------------------------------------- /hello_world/static/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codespaces-django/HEAD/hello_world/static/main.css -------------------------------------------------------------------------------- /hello_world/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codespaces-django/HEAD/hello_world/templates/index.html -------------------------------------------------------------------------------- /hello_world/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codespaces-django/HEAD/hello_world/urls.py -------------------------------------------------------------------------------- /hello_world/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codespaces-django/HEAD/hello_world/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codespaces-django/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/codespaces-django/HEAD/requirements.txt --------------------------------------------------------------------------------