2013-09-28 03:06:32 +02:00
|
|
|
About nsupdate.info
|
|
|
|
===================
|
|
|
|
|
|
|
|
www.nsupdate.info is a free dynamic dns service.
|
|
|
|
|
|
|
|
nsupdate.info is also the name of the software used to implement it.
|
|
|
|
|
2013-09-28 10:24:05 +02:00
|
|
|
|
|
|
|
Installation
|
2013-09-28 11:00:07 +02:00
|
|
|
============
|
2013-09-28 10:24:05 +02:00
|
|
|
|
2013-09-28 11:00:07 +02:00
|
|
|
If you haven't already done create and change to a virtualenv for the
|
2013-09-28 18:04:21 +02:00
|
|
|
installation (here with virtualenvwrapper):
|
2013-09-28 18:01:43 +02:00
|
|
|
|
2013-09-28 18:04:21 +02:00
|
|
|
::
|
2013-09-28 18:01:43 +02:00
|
|
|
mkvirtualenv nsupdate
|
|
|
|
workon nsupdate
|
|
|
|
|
2013-09-28 11:00:07 +02:00
|
|
|
|
2013-09-28 18:04:21 +02:00
|
|
|
Clone the repo and cd into:
|
2013-09-28 18:01:43 +02:00
|
|
|
|
2013-09-28 18:04:21 +02:00
|
|
|
::
|
2013-09-28 18:01:43 +02:00
|
|
|
git clone git@github.com:asmaps/nsupdate.info.git nsupdate
|
|
|
|
cd nsupdate
|
|
|
|
|
2013-09-28 11:00:07 +02:00
|
|
|
|
2013-09-28 18:04:21 +02:00
|
|
|
Then install the requirements (either "dev" or just "all" for production):
|
2013-09-28 18:01:43 +02:00
|
|
|
|
2013-09-28 18:04:21 +02:00
|
|
|
::
|
2013-09-28 18:01:43 +02:00
|
|
|
pip install -r requirements.d/all.txt
|
|
|
|
# or for dev
|
|
|
|
pip install -r requirements.d/dev.
|
|
|
|
|
2013-09-28 11:00:07 +02:00
|
|
|
|
2013-09-28 10:24:05 +02:00
|
|
|
From time to time execute this again to install the newest dependencies.
|
2013-09-28 11:00:07 +02:00
|
|
|
|