Skip to main content

User management django application for Edelweiss Data

Project description

django-edelweiss-data-usermanager

This is a django appliation to help manage users and user groups for an EdelweissData installation. It provides an admin dashboard creating and editing entites directly into the EdelweissData database.

It is assumed you already have a Edelweiss Data database. The django app will not try to create the EdelweissData core database tables.

Installation into your django project

Add this app to your installed apps in your settings.py file:

INSTALLED_APPS = [
    ....
    'django_edelweiss_data.usermanager',
]

You probably want to keep your EdelweissData core tables in a different schema from your django application files. You might even choose to use a different database. Add a router in your settings.py file so that django knows to look for the EdelweissData tables in a different location:

    DATABASE_ROUTERS = ['django_edelweiss_data.usermanager.router.Router']

Then configure your DATABASES section with default and edelweiss_datasets sections. In the following example, all tables are in the edelweiss database. The EdelweissData core tables are in the datasets schema and the django application tables are in the django schema.

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.postgresql',
        'OPTIONS': {
            'options': '-c search_path=django',
        },
        'NAME': 'edelweiss',
    },
    'edelweiss_datasets': {
        'ENGINE': 'django.db.backends.postgresql',
        'OPTIONS': {
            'options': '-c search_path=datasets',
        },
        'NAME': 'edelweiss',
    }
}

Connect to your database and create the django schema:

CREATE SCHEMA IF NOT EXISTS django;

And then run migrations:

python manager.py migrate usermanager

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

Built Distribution

File details

Details for the file django-edelweiss-data-usermanager-0.0.3.tar.gz.

File metadata

File hashes

Hashes for django-edelweiss-data-usermanager-0.0.3.tar.gz
Algorithm Hash digest
SHA256 179c994bf2bf803222a0553ab5471f1284f12e34e3739fdfa4d351a650c34a75
MD5 651f16ec6bf689a3033b569f58f5aa4b
BLAKE2b-256 27af6c53300d44c33456fcdae99c5075853a214263bceaac1b4896680f761a7e

See more details on using hashes here.

File details

Details for the file django_edelweiss_data_usermanager-0.0.3-py3-none-any.whl.

File metadata

File hashes

Hashes for django_edelweiss_data_usermanager-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 ac59ef968c007e61249e47d5cd7e0dbe23e6b021183c3f29d40c5aba8e9c2974
MD5 b86437682d56f6902c1f5b7e5c8b80f0
BLAKE2b-256 b6e8935a1faf935583a1d6398879d7da7642ca6a9e508f258d22238f50ff56b0

See more details on using hashes here.

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