installation howto and basic requirements

This commit is contained in:
Arne Schauf 2013-09-28 10:24:05 +02:00
parent 6b1c2b8632
commit bbf8217b90
3 changed files with 24 additions and 0 deletions

View File

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

2
requirements.d/all.txt Normal file
View File

@ -0,0 +1,2 @@
django==1.5.4
south

1
requirements.d/dev.txt Normal file
View File

@ -0,0 +1 @@
django-debug-toolbar