Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/richardbolt/django-bibletext-rvg
Django-Bibletext implementation of the Reina Valera Gómez text.
https://github.com/richardbolt/django-bibletext-rvg
Last synced: about 2 months ago
JSON representation
Django-Bibletext implementation of the Reina Valera Gómez text.
- Host: GitHub
- URL: https://github.com/richardbolt/django-bibletext-rvg
- Owner: richardbolt
- Created: 2010-12-21T07:10:08.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2013-12-11T03:12:24.000Z (about 11 years ago)
- Last Synced: 2023-03-11T14:23:45.608Z (almost 2 years ago)
- Language: Python
- Homepage:
- Size: 1.66 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Reina Valera Gómez Django-Bibletext Viewer App
==============================================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.](http://westcoastbaptistkjv.org/bible/RVG/)
Dependencies
------------Uses [django-bibletext](http://github.com/richardbolt/django-bibletext) for
the core functioality. You will need that on your path somewhere.Django-Bibletext uses [python-bible](http://github.com/jasford/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.Installation
------------* Make sure the dependencies are satisfied and this module is somewhere on your python path.
* Add `'rvg'` to your `INSTALLED_APPS` in your **settings.py**.
* Create your database tables: `python manage.py syncdb`.
* Install initial data from fixtures: `python manage.py loaddata rvg.json`.Usage
-----See [django-bibletext](http://github.com/richardbolt/django-bibletext) for usage details.