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-2.2.0.tar.gz
(169.4 kB
view details)
File details
Details for the file core_main_registry_app-2.2.0.tar.gz.
File metadata
- Download URL: core_main_registry_app-2.2.0.tar.gz
- Upload date:
- Size: 169.4 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 |
628e739328f6be14126a484c69d176dd35c542794cd7853cc68a883288103c2f
|
|
| MD5 |
e47829e748885d6a3e44573d3da8564f
|
|
| BLAKE2b-256 |
84af43c24e96a03ab589fda0569278b79fdffa90c62cc1d04f383f7b8472bba5
|