Skip to main content

Django app for Intlekt, a content curation application using the IEML language.

Project description

# Django Intlekt

A Django app for Intlekt, the content curation application using the IEML language.

## Install

Requirements:

* MongoDB **3.2** (can be installed with Docker)

```
pip install django-intlekt
```

```python
# django_project/settings.py

INSTALLED_APPS = [
# ...
'rest_framework',
'rest_framework_mongoengine',
# These are for cross-origin requests
# 'rest_framework.authtoken',
# 'corsheaders',
'django_intlekt',
]

from mongoengine import connect
connect(...) # See http://docs.mongoengine.org/guide/connecting.html
```

```python
# django_project/urls.py

from django.conf.urls import url, include

urlpatterns = [
url(r'^', include('django_intlekt.urls')), # TODO: customize the route
# ...
]
```

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

django-intlekt-0.3.0.tar.gz (216.0 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