Détail des coûts des services afin de permettre la pratique du prix libre.
|
il y a 6 ans | |
---|---|---|
costs | il y a 6 ans | |
publicsite | il y a 6 ans | |
transparency | il y a 7 ans | |
.gitignore | il y a 9 ans | |
README.md | il y a 7 ans | |
manage.py | il y a 9 ans | |
requirements.txt | il y a 9 ans |
It's still alpha-pre-ugly-looking and some strings are mentioning FAImaison, more usable version may be integrated to coin.
Be sure to use python3.
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.py migrate
Run development server
workon transparency
./manage.py runserver