From dea541c1492795358ad5e1ca67037151ce425b5f Mon Sep 17 00:00:00 2001 From: Dennis Ahrens <dennis.ahrens@hs-hannover.de> Date: Wed, 21 Sep 2016 19:11:46 +0200 Subject: [PATCH] Add dummy staticfile for tests in vagrant --- helloworld/static/foo | 1 + helloworld/views.py | 1 + 2 files changed, 2 insertions(+) create mode 100644 helloworld/static/foo diff --git a/helloworld/static/foo b/helloworld/static/foo new file mode 100644 index 0000000..e50a49f --- /dev/null +++ b/helloworld/static/foo @@ -0,0 +1 @@ +bar! diff --git a/helloworld/views.py b/helloworld/views.py index b0895dc..2122215 100644 --- a/helloworld/views.py +++ b/helloworld/views.py @@ -1,5 +1,6 @@ # -*- coding: utf-8 -*- from django.http import HttpResponse + def index(request): return HttpResponse("Hello, world!") -- GitLab