Skip to main content

The server side implementation of the EteSync protocol.

Project description

<p align="center">
<img width="120" src="icon.svg" />
<h1 align="center">EteSync - Secure Data Sync</h1>
</p>

This is a reusable django app that implements the server side of EteSync

![GitHub tag](https://img.shields.io/github/tag/etesync/journal-manager.svg)
[![PyPI](https://img.shields.io/pypi/v/django-etesync-journal.svg)](https://pypi.python.org/pypi/django-etesync-journal/)
[![Chat on freenode](https://img.shields.io/badge/irc.freenode.net-%23EteSync-blue.svg)](https://webchat.freenode.net/?channels=#etesync)

More info is available on the [EteSync website](https://www.etesync.com)

# Quick start

1. Add "journal" to your INSTALLED_APPS setting like this::

```
INSTALLED_APPS = [
...
'journal.apps.JournalConfig',
]
```

2. Include the polls URLconf in your project urls.py like this:

```
from django.conf.urls import include, url

from rest_framework import routers

from journal import views

router = routers.DefaultRouter()
router.register(r'journals', views.JournalViewSet)
router.register(r'journal/(?P<journal>[^/]+)', views.EntryViewSet)

urlpatterns = [
url(r'^api/v1/', include(router.urls)),
]
```

3. Run `python manage.py migrate` to create the journal models

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-etesync-journal-1.0.1.tar.gz (24.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