Main functionalities for the registry project
Project description
Core Main Registry App
This Django reusable app contains the main functionalities for the registry core project.
Pre-requisites
Install git
Install python
Install pip
Create a virtual env
Installation
Automated installation
Manual installation
$ git clone https://myrepo.com/core_main_registry_app.git
$ cd core_main_registry_app
$ python setup.py
$ pip install sdist/*.tar.gz
Configuration
1. Add “core_main_registry_app”, “mptt”, “tz_detect” to your INSTALLED_APPS setting like this
INSTALLED_APPS = [
...
"tz_detect",
"core_main_registry_app",
"mptt",
]
2. Add the middleware required by tz_detect
MIDDLEWARE = (
...
'tz_detect.middleware.TimezoneMiddleware',
)
3. Include the core_main_registry_app URLconf in your project urls.py like this
url(r'^', include("core_main_registry_app.urls")),
4. Launch migration: create table and constraints.
$ python manage.py migrate
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
core_main_registry_app-1.19.0.tar.gz
(165.7 kB
view details)
File details
Details for the file core_main_registry_app-1.19.0.tar.gz.
File metadata
- Download URL: core_main_registry_app-1.19.0.tar.gz
- Upload date:
- Size: 165.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.0 importlib_metadata/3.7.3 packaging/20.9 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0157801ef5222fcf620a657e4e7e4c1cbcfea0d5df6aaacd7c832ea4b779da4c
|
|
| MD5 |
a2dabe22d127d0d14a17ff6cb43497e2
|
|
| BLAKE2b-256 |
d68cec12f82fbd397d3c73eec375e3ec6cc5b4722748f51de3776d2cb4773a6b
|