From 44d3c66cbd036cda6fd272dcdf68bc56a75a3731 Mon Sep 17 00:00:00 2001 From: Rebecca Law Date: Mon, 23 Nov 2015 14:31:14 +0000 Subject: [PATCH] Remove sass dir Update ReadMe with Getting Started directions --- README.md | 29 ++++++++++++++++++++++------- app.py | 2 -- 2 files changed, 22 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 3d95b8b91..47c5521b6 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,27 @@ -https://travis-ci.org/alphagov/notificiations-admin.svg +https://travis-ci.org/alphagov/notifications-admin.svg # notifications-admin Application to handle the admin functions of the notifications application. -Register users. -Register services. -Download CSV for an email or sms batch. -Show history of notifications. -Reports. +Features of this application: + Register users. + Register services. + Download CSV for an email or sms batch. + Show history of notifications. + Reports. -Make a change \ No newline at end of file + +Create a virtual environment for this project + mkvirtualenv -p /usr/local/bin/python3 notifications-admin + +GOV.UK frontend toolkit + The GOV.UK frontend toolkit is a submodule of this project. + To get the content of the toolkit run the following two commands + + git submodule init + git submodule update + + +To run the sample application run: + pip install -r requirements.txt + python app.py \ No newline at end of file diff --git a/app.py b/app.py index feadd3b27..3ea2a77ea 100644 --- a/app.py +++ b/app.py @@ -20,8 +20,6 @@ env = assets.Environment(app) env.config['cache'] = False env.config['manifest'] = False -env.config['sass_bin'] = '/Users/rebeccalaw/.rbenv/shims/sass' - # Tell flask-assets where to look for our sass files. env.load_path = [ os.path.join(os.path.dirname(__file__), 'assets/stylesheets'),