Jan Dittberner
9a0ceee062
-----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQEcBAABCgAGBQJUsom6AAoJEA15HcjXN8HZhKEIAKhhq6Hfbb5j8nnz46jFIJia +Klg6pp0iVjz9Lmw9BGKlZ3N+JcfYTOap4lZzhZfW9WCLBoqzzyCBGTLobJNQNuD JYndeUAHDTpaQM0o86uEnFQAFRnQ78O7kdAMDFBEkORSibmyIOjeabPJvTvo40+5 MQKIqyZnXKeObEws2SFxCCUxLG916OqTXXHe6p2RvDXhkHpBIxE3/zQ6jAaVTlzs tUZNn6x/Ola6iI17pDpwR70z6T5Xsf5WlPrDlHEp49X0Jjm9YIPH5ob6/jCpNtUe C1jdD+P0PntWuw08iD1rp4fqK/Djat9LXMBVEIi1LnOPQ7MrMyYq6KJXqPOoXx0= =sTsQ -----END PGP SIGNATURE----- Merge tag '0.4.0' release 0.4.0 * tag '0.4.0': define version number, update changelog |
||
---|---|---|
docs | ||
gnuviechadmin | ||
requirements | ||
.gitignore | ||
CONTRIBUTORS.txt | ||
LICENSE.txt | ||
README.rst | ||
requirements.txt |
gnuviechadmin
Customer center for gnuviech servers.
To use this project follow these steps:
- Create your working environment
- Install Django
- Create the new project using the django-two-scoops template
- Install additional dependencies
- Use the Django admin to create the project
Working Environment
You have several options in setting up your working environment. We recommend using virtualenv to separate the dependencies of your project from your system's python environment. If on Linux or Mac OS X, you can also use virtualenvwrapper to help manage multiple virtualenvs across different projects.
Virtualenv Only
First, make sure you are using virtualenv (http://www.virtualenv.org). Once that's installed, create your virtualenv:
$ virtualenv --distribute gnuviechadmin
You will also need to ensure that the virtualenv has the project directory added to the path. Adding the project directory will allow django-admin.py to be able to change settings using the --settings flag.
Virtualenv with virtualenvwrapper
In Linux and Mac OSX, you can install virtualenvwrapper (http://virtualenvwrapper.readthedocs.org/en/latest/), which will take care of managing your virtual environments and adding the project path to the site-directory for you:
$ mkdir gnuviechadmin
$ mkvirtualenv -a gnuviechadmin gnuviechadmin-dev
$ cd gnuviechadmin && add2virtualenv `pwd`
Installation of Dependencies
Depending on where you are installing dependencies:
In development:
$ pip install -r requirements/local.txt
For production:
$ pip install -r requirements.txt