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
# ...
]
```
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 details)
File details
Details for the file django-intlekt-0.3.0.tar.gz.
File metadata
- Download URL: django-intlekt-0.3.0.tar.gz
- Upload date:
- Size: 216.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ded9f5ed82c646432552182cc2f94b7ba04ca63e53e45eec2f9586c6766240a0
|
|
| MD5 |
db202ff45f8a302bf33abfa12e6815bc
|
|
| BLAKE2b-256 |
1d2241e3242500d0f04255be9d59c720edc9a60ed37ec1e4f12928f5f8342e2d
|