A Django app for the full Reina Valera Gómez Bible text.
Plugs into the Django-Bibletext App and provides the full Reina-Valera Gómez text.
You can see it in action here.
Uses django-bibletext for the core functioality. You will need that on your path somewhere.
Django-Bibletext uses python-bible for computing and handling the verse and passage lookups. You will need that on your path somewhere. This dependency will possibly be removed in the future.
- Make sure the dependencies are satisfied and this module is somewhere on your python path.
- Add
'rvg'
to yourINSTALLED_APPS
in your settings.py. - Create your database tables:
python manage.py syncdb
. - Install initial data from fixtures:
python manage.py loaddata rvg.json
.
See django-bibletext for usage details.