PonyConf/README.md

27 lines
413 B
Markdown
Raw Permalink Normal View History

# PonyConf
2016-06-12 17:40:44 +00:00
Organise your conferences.
2016-06-20 18:56:36 +00:00
2016-07-09 17:33:41 +00:00
## HowTo Test
2016-07-09 17:33:41 +00:00
(you should work on a virtualenv)
```bash
git clone --recursive git@git.afpy.org:AFPy/PonyConf.git
2016-07-09 17:33:41 +00:00
cd PonyConf
pip install -U -r requirements.txt
./manage.py migrate
./manage.py runserver
./manage.py createsuperuser
2016-07-09 17:33:41 +00:00
```
2017-11-19 23:00:40 +00:00
## HowTo update translations
2017-11-19 23:00:40 +00:00
```bash
./manage.py makemessages
poedit locale/fr/LC_MESSAGES/django.po
./manage.py compilemessages
```