Skip to content

morristech/journal-manager

 
 

Repository files navigation

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

More info on the EteSync website

Quick start

  1. Add "journal" to your INSTALLED_APPS setting like this::
INSTALLED_APPS = [
    ...
    'journal.apps.JournalConfig',
]
  1. 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)),
]
  1. Run python manage.py migrate to create the journal models

About

EteSync - server django app

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%