Détail des coûts des services afin de permettre la pratique du prix libre.

Jocelyn Delande 81d4b4eef5 Disable DEBUG by default il y a 9 ans
costs e99dd0575d Limit detailed costs access to registered users il y a 9 ans
publicsite 0698bb1d14 Move base.html to app templates dir il y a 9 ans
transparency 81d4b4eef5 Disable DEBUG by default il y a 9 ans
.gitignore 5325018729 Use a local_settings.py file il y a 9 ans
README.md bf13ebe60a Clarify the install/run doc il y a 9 ans
manage.py 8886470a44 Initial commit il y a 9 ans
requirements.txt 3a6354c879 Handle description/notes as markdown il y a 9 ans

README.md

Transparency: detail costs for libre price

It's still alpha-pre-ugly-looking and some strings are mentioning FAImaison, more usable version may be integrated to coin.

Install it

sudo apt-get install python virtualenvwrapper
mkvirtualenv transparency
pip install -r requirements.txt

Generate a secret key:

echo SECRET_KEY=`python -c "import string,random; uni=string.ascii_letters+string.digits+string.punctuation; print(repr(''.join([random.SystemRandom().choice(uni) for i in range(random.randint(45,50))])))"` > transparency/local_settings.py

Set your organization name :

echo 'ORGANISATION_NAME="ACME Charity"' >> transparency/local_settings.py

Create database:

./manage migrate

Run it

Run development server

workon transparency
./manage.py runserver

Use it