This Django reusable app contains the main functionalities for the registry core project.
- Install git
- Install python
- Install pip
- Create a virtual env
Warning
The automated installation is not yet available.
$ git clone https://myrepo.com/core_main_registry_app.git
$ cd core_main_registry_app
$ python setup.py
$ pip install sdist/*.tar.gz
INSTALLED_APPS = [
...
"core_main_registry_app",
"mptt",
]
url(r'^', include("core_main_registry_app.urls")),
$ python manage.py migrate