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.17.0.tar.gz
(165.7 kB
view details)
File details
Details for the file core_main_registry_app-1.17.0.tar.gz.
File metadata
- Download URL: core_main_registry_app-1.17.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 |
07b6c45aa87f300c67f2d100fcd1ee8f27c958a5ebbd426235285ab66dd608bd
|
|
| MD5 |
bb45f3d80c372c99e72edc354da44531
|
|
| BLAKE2b-256 |
fa843dd1d8cf10a182786a441a1d6612228ea3822f397675d9d0f5229c127dd1
|