aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorVladimir Gorej2013-12-07 12:00:20 +0100
committerVladimir Gorej2013-12-07 12:00:20 +0100
commita21caf8e1b119d75859cfb4118ba7cb908805477 (patch)
treeb442e38460ffd42adaf56bba13325a8f37c92a54 /Makefile
parente17323d333569dc44e007d54c477298c1ae4b0d0 (diff)
downloaddjango-brevisurl-a21caf8e1b119d75859cfb4118ba7cb908805477.tar.bz2
Version 2.0.0 bump.2.0.0
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..e115ba4
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,17 @@
+bootstrap:
+ pip install -e . --use-mirrors
+ pip install "file://`pwd`#egg=brevisurl" --use-mirrors
+ ./scripts/setup.sh
+ python manage.py syncdb --noinput --migrate
+
+
+test: bootstrap
+ @echo "Running Python tests"
+ python manage.py test brevisurl
+ @echo ""
+
+clean:
+ rm -rf ./dist
+ rm -rf ./django_brevisurl.egg-info
+ rm -rf test.db
+ rm -rf settings.py \ No newline at end of file