FactBook is a simple Django app to store facts about the world. The initial focus was to have an app for keeping up-to-date country and currency information. Future plans extend to forex conversion, street adress look and measurement conversions.
Detailed documentation is in the "docs" directory.
Add "factbook" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ... 'fact_book', ]
Include the polls URLconf in your project urls.py like this:
url(r'^fact_book/', include('fact_book.urls')),
Run python manage.py migrate to create the fact_book models.
Start the development server and visit http://127.0.0.1:8000/admin/ to create a poll (you'll need the Admin app enabled).
Visit http://127.0.0.1:8000/fact_book/ to get an overview.
Clone this repository:
git clone https://github.com/obitec/django-factbook cd django-factbook
Create a python virtual environment and activate:
python -m venv venv source venv/bin/activate
Update pip and install development dependencies:
pip install -U pip pip install -r tests/requirements.txt
Build the app and documentation:
invoke build --docs
Create a pull request :-)