Verdict is a simple Django app to manage permission.
INSTALLED_APPS = (
...
'verdict',
)
- if want use redis cache:
INSTALLED_APPS = (
...
'cacheops',
'verdict',
)
VERDICT_SETTINGS = {
...
'CACHE': {
'host': '127.0.0.1',
'port': 6379,
'db': 1,
'password': 'localpw'
}
}
url(r'^verdict/', include('verdict.urls')),
python manage.py migrate
python manage.py runserver
http://127.0.0.1:8000/verdict/