Système d'information du FAI Illyse

Baptiste Jonglez ccae8c3393 Document deployment 10 years ago
coin d4f6ee4ef9 Fix creation of users when there is no user in LDAP yet 10 years ago
contrib 4389dc53ea Ajout du path pour python et de la suppression du pid après le kill 10 years ago
illyse-si-design 85e9f0d4d1 [design] suppression du hover sur le titre 10 years ago
.gitignore 5a71dd3438 Make use of django-sendfile to have the possibility to make use of web serveur to send a private file to a client. 10 years ago
DEPLOYMENT.md ccae8c3393 Document deployment 10 years ago
README.md b8dac304f2 Update README 10 years ago
manage.py 8efe3fd1fb Add some default values 11 years ago
requirements.txt ecbe19bc16 Use a version of django-netfields compatible with Django 1.7 10 years ago

README.md

The COIN project

Coin is Illyse's Information System, designed to manage both members and Internet accesses, such as through DSL, VPN, wireless…

It is written in Django, and makes an heavy use of LDAP (for authentication, and to store configuration information).

It features a generic configuration interface, which allows to implement custom backends for different technologies. Currently implemented is a LDAP-based backend for OpenVPN.

Coin currently only works with python2, because python-ldap is (as of 2013) not compatible with python3.

The project page (issue, wiki, etc) is here:

https://www.illyse.org/projects/ils-si/

A mirror of the code is available at:

https://code.ffdn.org/zorun/coin/

Quickstart

Get yourself a virtualenv. On Debian, install python-virtualenv. On Archlinux, the package is called python2-virtualenv, and you must replace the virtualenv command with virtualenv2 in the following.

To create the virtualenv (the first time):

virtualenv ~/tmp/venv-illyse

To activate the virtualenv (you need to do this each time you work on the project):

. ~/tmp/venv-illyse/bin/activate

Install dependencies. On Debian, you will probably need the python-dev, python-pip, libldap-dev, libpq-dev and libsasl2-dev packages.

sudo apt-get install python-dev python-pip libldap2-dev libpq-dev libsasl2-dev

Then run:

pip install -r requirements.txt

You should now be able to run python manage.py (within the virtualenv, obviously) without error.

The coin/settings_local.py file is ignored by Git: feel free to override any setting by writing into that file. For example, to override the DEBUG settings:

echo '# -*- coding: utf-8 -*-' > coin/settings_local.py
echo 'DEBUG = TEMPLATE_DEBUG = True' >> coin/settings_local.py

At this point, you should setup your database. Recommended is postgreSQL, but you might be able to use SQLite. For more information, see https://www.illyse.org/projects/ils-si/wiki/Mise_en_place_environnement_de_dev

The first time, you need to create the database, create a superuser, and import some base data to play with:

python manage.py migrate
python manage.py createsuperuser
python manage.py loaddata offers ip_pool

Then, at each code update, you only need to apply migrations:

python manage.py migrate

At this point, Django should run correctly:

python manage.py runserver

More information

For the rest of the setup (database, LDAP), see

https://www.illyse.org/projects/ils-si/wiki/Mise_en_place_environnement_de_dev