A Django app to search and view data from an API.
Project description
django-ndr-core
django-ndr-core is a mini CMS but most of all an access point to research data over apis. NDR Core helps you create a project website and present your data. It lets you create pages and add content to them. It also lets you create and manage your own data access points over different APIs and lets you configure how to present the data and how to make it searchable.
Get Started
- Find the Documentation on ReadTheDocs.
settings.py
Open <project_name>/settings.py
and add the ndr_core module and its dependencies to INSTALLED_APPS
:
(Leave the existing settings in place).
import os
from ndr_core.ndr_settings import *
[...]
INSTALLED_APPS = [
[...]
]
INSTALLED_APPS += NdrSettings.get_installed_apps()
urls.py
Open <project_name>/urls.py
and add the ndr_core module and its dependencies to INSTALLED_APPS
:
(Leave the existing settings in place).
from ndr_core.ndr_settings import NdrSettings
[...]
urlpatterns = [
[...]
]
urlpatterns += NdrSettings.get_urls()
Migrate the database
After you have added the django-ndr-core module and its dependencies to your settings and urls, you can migrate your installation again to create the necessary database tables for your ndr-core installation.
python manage.py migrate
python manage.py collectstatic
Initialize your NDR Core app
python manage.py init_ndr_core
Start configuring and entering content
Run your server.
python manage.py runserver
Visit http://localhost:8000/ to view your website and http://localhost:8000/ndr_core/ to access the configuration interface. The last command runs your server on port 8000. This is not suitable for production use. You should use a webserver like nginx to serve your application. See the Documentation for more information.
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
Built Distribution
File details
Details for the file django_ndr_core-0.42.0.tar.gz
.
File metadata
- Download URL: django_ndr_core-0.42.0.tar.gz
- Upload date:
- Size: 11.5 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 41676b03ebdc8fdfbc6a1317ca8908e268184bd8fece1cc8d021fc1d3d633c2f |
|
MD5 | 791b52e77f4306de1274cbd06cc3ee74 |
|
BLAKE2b-256 | 9d777323be47889b500db1afd8f3ba91cacab030f8ef2aba5a619ceef650b04c |
File details
Details for the file django_ndr_core-0.42.0-py3-none-any.whl
.
File metadata
- Download URL: django_ndr_core-0.42.0-py3-none-any.whl
- Upload date:
- Size: 11.7 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8b3b2dbee336752b4163e07bed11b30f6504b95e13ea1b911a2c732bb4da6d1f |
|
MD5 | 019c74f46845547ce3933314cc638412 |
|
BLAKE2b-256 | 680dbe0a55cfd52e4d3bad6d4f16ae1c0b618edcfb8037c104a82d5c78460dd4 |