Fixing django-sample (#413)
* [django-sample] Fixing bugs and removing useless imports
* [django-sample] Adding requirements
* [django-sample] Adding make file
* Adding test to Makefile
diff --git a/samples/django_sample/Makefile b/samples/django_sample/Makefile
new file mode 100644
index 0000000..35d29f0
--- /dev/null
+++ b/samples/django_sample/Makefile
@@ -0,0 +1,21 @@
+pip:
+ @pip install -r requirements.txt
+
+
+syncdb:
+ @python manage.py syncdb
+
+
+run:
+ @python manage.py runserver 0.0.0.0:8000
+
+
+setup: pip syncdb run
+
+
+shell:
+ @python manage.py shell
+
+
+test:
+ @python manage.py test