Skip to main content

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


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.6.0.tar.gz (166.1 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page