SOATO Registry¶
SOATO Registry of Uzbekistan
Documentation¶
The full documentation is at https://uzsoato_registry.readthedocs.io.
Quickstart¶
Install SOATO Registry:
pip install uzsoato_registry
Add it to your INSTALLED_APPS:
INSTALLED_APPS = (
...
'soato',
...
)
Add SOATO Registry’s URL patterns:
from soato import urls as soato_urls
urlpatterns = [
...
path('', include(soato_urls)),
...
]
Features¶
TODO
Running Tests¶
Does the code actually work?
source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox
Development commands¶
pip install -r requirements_dev.txt
invoke -l