|
@@ -23,11 +23,27 @@ A mirror of the code is available at:
|
|
|
https://code.ffdn.org/zorun/coin/
|
|
|
|
|
|
|
|
|
+Demo
|
|
|
+====
|
|
|
+
|
|
|
+A demo of COIN is publicly available at:
|
|
|
+
|
|
|
+ https://coin-dev.illyse.org
|
|
|
+
|
|
|
+Login: ffdn
|
|
|
+Password: internet
|
|
|
+
|
|
|
+This user account has access to the administration interface.
|
|
|
+
|
|
|
+
|
|
|
Quickstart
|
|
|
==========
|
|
|
|
|
|
-Get yourself a virtualenv. On Debian, install `python-virtualenv`. On
|
|
|
-Archlinux, the package is called `python2-virtualenv`, and you must
|
|
|
+Virtualenv
|
|
|
+----------
|
|
|
+
|
|
|
+Using a virtualenv is recommended. 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):
|
|
@@ -56,6 +72,9 @@ You may experience problems with SSL certificates du to self-signed cert used by
|
|
|
You should now be able to run `python manage.py` (within the
|
|
|
virtualenv, obviously) without error.
|
|
|
|
|
|
+Settings
|
|
|
+--------
|
|
|
+
|
|
|
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:
|
|
@@ -63,14 +82,27 @@ 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
|
|
|
-
|
|
|
If you don't want to use LDAP, just set in your `settings_local.py`:
|
|
|
|
|
|
LDAP_ACTIVATE = False
|
|
|
|
|
|
+See the end of this README for a reference of available configuration settings.
|
|
|
+
|
|
|
+Database
|
|
|
+--------
|
|
|
+
|
|
|
+At this point, you should setup your database: we highly recommend PostgreSQL.
|
|
|
+SQLite might work, but some features will not be available:
|
|
|
+
|
|
|
+- automatic allocation of IP subnets (needs proper subnet implementation in
|
|
|
+ the database)
|
|
|
+- sending automated emails to remind of expiring membership fee
|
|
|
+ (needs aggregation on date fields, see Django doc)
|
|
|
+
|
|
|
+For more information on the database setup, 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:
|
|
|
|
|
@@ -82,8 +114,10 @@ Note that the superuser will be inserted into the LDAP backend exactly in the
|
|
|
same way as all other members, so you should use a real account (not just
|
|
|
admin/admin).
|
|
|
|
|
|
-Then, at each code update, you only need to apply migrations:
|
|
|
+Then, at each code update, you will only need to update dependencies and apply
|
|
|
+new migrations:
|
|
|
|
|
|
+ pip install -r requirements.txt
|
|
|
python manage.py migrate
|
|
|
|
|
|
|
|
@@ -92,6 +126,27 @@ At this point, Django should run correctly:
|
|
|
python manage.py runserver
|
|
|
|
|
|
|
|
|
+Available commands
|
|
|
+==================
|
|
|
+
|
|
|
+Some useful administration commands are available via `manage.py`.
|
|
|
+
|
|
|
+`python manage.py members_email`: returns email addresses of all members, one
|
|
|
+per line. This may be useful to automatically feed a mailing list software.
|
|
|
+Note that membership is based on the `status` field of users, not on
|
|
|
+membership fees. That is, even if a member has forgot to renew his or her
|
|
|
+membership fee, his or her address will still show up in this list.
|
|
|
+
|
|
|
+`python manage.py charge_subscriptions`: generate invoices (including a
|
|
|
+PDF version) for each subscriber. You probably want to run this command
|
|
|
+every month as a cron task, see below.
|
|
|
+
|
|
|
+`python manage.py call_for_membership_fees`: send reminder emails to members
|
|
|
+whose membership fee is about to expire or is already expired (1 month before,
|
|
|
+on the day of expiration, 1 month after, 2 months after, and 3 months after).
|
|
|
+You should run this command in a cron job every day.
|
|
|
+
|
|
|
+
|
|
|
Configuration
|
|
|
=============
|
|
|
|
|
@@ -112,6 +167,19 @@ in the admin. Information entered in this application has two purposes:
|
|
|
Some bits of configuration are done in `settings.py`: LDAP branches, RSS feeds
|
|
|
to display on the home page, and so on.
|
|
|
|
|
|
+Cron tasks
|
|
|
+----------
|
|
|
+
|
|
|
+You may want to run cron jobs for repetitive tasks.
|
|
|
+
|
|
|
+To generate invoices on the first day of each month, here at 3 am:
|
|
|
+
|
|
|
+`0 3 1 * * /home/coin/venv/bin/python manage.py charge_subscriptions`
|
|
|
+
|
|
|
+To send reminder emails for membership fee expiration:
|
|
|
+
|
|
|
+`42 3 * * * /home/coin/venv/bin/python manage.py call_for_membership_fees`
|
|
|
+
|
|
|
|
|
|
More information
|
|
|
================
|