From bf367c595002e3d29ac8f6c858abd970a4d286af Mon Sep 17 00:00:00 2001 From: Brian Duggan Date: Thu, 31 May 2018 10:25:07 -0400 Subject: [PATCH] Remove Makefile, update README --- Makefile | 5 ----- README.md | 10 +++------- 2 files changed, 3 insertions(+), 12 deletions(-) delete mode 100644 Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index e4fb2f72..00000000 --- a/Makefile +++ /dev/null @@ -1,5 +0,0 @@ -test: - python -m pytest - -clean: - find static/assets -type f |grep -v .gitignore | xargs rm diff --git a/README.md b/README.md index 4d3d6933..b8d5baed 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ ## Installation - ./script/setup + script/setup The setup script will create a new Python virtual environment for the application to use. All of the scripts will activate this virutal envirnment automatically, but you can also manually activate it like this: @@ -21,22 +21,18 @@ If you want to automatically load the virtual environment whenever you enter the To start the app and watch for changes: - DEBUG=1 ./script/server + DEBUG=1 script/server ## Testing To run unit tests: - ./script/test + script/test or python -m pytest -or - - make test - ## Notes tornado templates are like mustache templates -- add the