$OpenBSD: README,v 1.3 2018/09/04 12:46:26 espie Exp $

+-----------------------------------------------------------------------
| Running py3-django-lts on OpenBSD
+-----------------------------------------------------------------------

Documentation
=============
Complete project documentation may be found in:
/usr/local/share/doc/django-lts/

or online:
http://docs.djangoproject.com/en/1.11.22/

Release notes about the changes that occurred in this release
may be found online at:
http://docs.djangoproject.com/en/dev/releases/1.11.22/

Databases
=========
Django supports number of different databases, but you need
to use install Python database adapter(s) to use them:
* py3-mysqlclient - for MySQL database,
* py3-psycopg2 - for PostgreSQL database.

SQLite works out-of-the-box.

UTF-8
=====
Django assumes that you're running UTF-8 capable system, but
it doesn't enforce any locales, which results in regressions
when running in an environment without enabled UTF-8 locale.

This means that, unless you've got UTF-8 locale enabled for
your profile, you need to enable UTF-8 while starting Django
process:

    $ env LC_CTYPE=en_US.UTF-8 ./manage.py runserver

or configure your application server to pass this setting.
