minor readme fixes

I changed it to use directory name "nsupdate" because
some tools complain if there is a "." inside.
This commit is contained in:
Thomas Waldmann 2013-09-28 11:00:07 +02:00
parent cb1e1a6e97
commit 10a5fe613f

View File

@ -7,22 +7,27 @@ nsupdate.info is also the name of the software used to implement it.
Installation Installation
=================== ============
If you haven't already done create and change to a virtualenv for the installation (here with virtualenvwrapper) If you haven't already done create and change to a virtualenv for the
installation (here with virtualenvwrapper)
``` ```
mkvirtualenv nsupdate mkvirtualenv nsupdate
workon nsupdate workon nsupdate
``` ```
Clone the repo and cd into Clone the repo and cd into
``` ```
git clone git@github.com:asmaps/nsupdate.info.git git clone git@github.com:asmaps/nsupdate.info.git nsupdate
cd nsupdate.info cd nsupdate
``` ```
Then install requirements (either "dev" or just "all" for production)
Then install the requirements (either "dev" or just "all" for production)
``` ```
pip install -r requirements.d/all.txt pip install -r requirements.d/all.txt
#or for dev #or for dev
pip install -r requirements.d/dev.txt pip install -r requirements.d/dev.txt
``` ```
From time to time execute this again to install the newest dependencies. From time to time execute this again to install the newest dependencies.