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.20.0.tar.gz
(165.7 kB
view details)
File details
Details for the file core_main_registry_app-1.20.0.tar.gz.
File metadata
- Download URL: core_main_registry_app-1.20.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 |
9fa066103bd921fdaf7e86550940efd49d4432dab342ef1c1bd30ee7f2da80b1
|
|
| MD5 |
7a23cf96813c5928d7df94bef2e3b185
|
|
| BLAKE2b-256 |
5c232512f08ab852fbad4a2fc2662f68066fd2f539052a7d6cbb3be9651fb413
|