Go to file
jolheiser f64c041930
Python 3 changes, add LICENSE, update README
Signed-off-by: jolheiser <john.olheiser@gmail.com>
2022-02-12 15:21:03 -06:00
migrations Fix coords and re-add presets (#4) 2022-02-11 03:20:48 +00:00
static/coreprotect concat (#1) 2021-03-16 02:02:17 +00:00
templates/coreprotect Fix coords and re-add presets (#4) 2022-02-11 03:20:48 +00:00
.gitignore concat (#1) 2021-03-16 02:02:17 +00:00
LICENSE Python 3 changes, add LICENSE, update README 2022-02-12 15:21:03 -06:00
README.md Python 3 changes, add LICENSE, update README 2022-02-12 15:21:03 -06:00
__init__.py concat (#1) 2021-03-16 02:02:17 +00:00
activity.py Python 3 changes, add LICENSE, update README 2022-02-12 15:21:03 -06:00
admin.py Fix coords and re-add presets (#4) 2022-02-11 03:20:48 +00:00
apps.py concat (#1) 2021-03-16 02:02:17 +00:00
gui.py Python 3 changes, add LICENSE, update README 2022-02-12 15:21:03 -06:00
models.py Python 3 changes, add LICENSE, update README 2022-02-12 15:21:03 -06:00
router.py concat (#1) 2021-03-16 02:02:17 +00:00
urls.py Python 3 changes, add LICENSE, update README 2022-02-12 15:21:03 -06:00
utils.py Python 3 changes, add LICENSE, update README 2022-02-12 15:21:03 -06:00
views.py Python 3 changes, add LICENSE, update README 2022-02-12 15:21:03 -06:00

README.md

Django CoreProtect

Settings

INSTALLED_APPS = [
    'django_coreprotect',
]

DATABASE_ROUTERS = [
    'django_coreprotect.router.CoreProtectRouter'
]
DATABASES = {
    'django_coreprotect': {
        'ENGINE': 'django.db.backends.mysql',
        'NAME': '...',
        'USER': '...',
        'PASSWORD': '...',
        'HOST': '127.0.0.1',
    }
}

License

MIT