All Projects → etesync → journal-manager

etesync / journal-manager

Licence: AGPL-3.0 License
EteSync - server django app

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to journal-manager

django-restframework-userprofile
Public Profile is a Django REST Framework based API that demos how to extends a default Django Auth User model with a Profile. In addition, the code also includes a demo client that show how to consume the API from a Client Web Application.
Stars: ✭ 24 (-29.41%)
Mutual labels:  django-rest-framework
RabbitMQ-with-Django
Example for using Microservices with RabbitMQ in a Django Web-Application
Stars: ✭ 26 (-23.53%)
Mutual labels:  django-rest-framework
django-rest-framework-roles
Parameterizes Django REST Framework methods over user-defined roles
Stars: ✭ 132 (+288.24%)
Mutual labels:  django-rest-framework
GSoC-Data-Analyser
Simple search for organisations participating/participated in the GSoC
Stars: ✭ 29 (-14.71%)
Mutual labels:  django-rest-framework
kamu
You favorite book library
Stars: ✭ 65 (+91.18%)
Mutual labels:  django-rest-framework
django-rest-framework-aggregates
Exposes aggregation features of the Django model queryset to the DRF API.
Stars: ✭ 23 (-32.35%)
Mutual labels:  django-rest-framework
django-rest-live
Subscribe to updates from Django REST Framework over Websockets.
Stars: ✭ 48 (+41.18%)
Mutual labels:  django-rest-framework
network-pipeline
Network traffic data pipeline for real-time predictions and building datasets for deep neural networks
Stars: ✭ 36 (+5.88%)
Mutual labels:  django-rest-framework
instagram-api-clone
Instagram RESTful API clone made with Django REST framework
Stars: ✭ 56 (+64.71%)
Mutual labels:  django-rest-framework
platform
API for the Penn Labs platform built using Django REST framework. Includes accounts engine, club directory, product listings, documentation etc.
Stars: ✭ 20 (-41.18%)
Mutual labels:  django-rest-framework
elearning
e-learning django app (django, python)
Stars: ✭ 107 (+214.71%)
Mutual labels:  django-rest-framework
lego
LEGO Backend
Stars: ✭ 48 (+41.18%)
Mutual labels:  django-rest-framework
openverse-api
The Openverse API allows programmatic access to search for CC-licensed and public domain digital media.
Stars: ✭ 41 (+20.59%)
Mutual labels:  django-rest-framework
mathesar
Web application providing an intuitive user experience to databases.
Stars: ✭ 95 (+179.41%)
Mutual labels:  django-rest-framework
django-api-bouncer
Simple Django app to provide API Gateways for micro-services
Stars: ✭ 18 (-47.06%)
Mutual labels:  django-rest-framework
Face-Recognition-System
Intelligent Facial Recognition with Django Restful IoT on Raspberry Pi
Stars: ✭ 46 (+35.29%)
Mutual labels:  django-rest-framework
django-tutorial
Django 4 tutorial projects
Stars: ✭ 11 (-67.65%)
Mutual labels:  django-rest-framework
react pyconlunch
Companion React Native app for Pycon Lunch app
Stars: ✭ 80 (+135.29%)
Mutual labels:  django-rest-framework
Facial-Recognition-Attendance-System
An attendance system which uses facial recognition to detect which people are present in any image.
Stars: ✭ 48 (+41.18%)
Mutual labels:  django-rest-framework
jasmin-web-panel
📨 Jasmin Web Panel for Jasmin SMS Gateway
Stars: ✭ 33 (-2.94%)
Mutual labels:  django-rest-framework

EteSync - Secure Data Sync

IMPORTANT: This repo is deprecated, please use refer to https://github.com/etesync/server/

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

GitHub tag PyPI Build Status Chat on freenode

More info is available on the EteSync website

Quick start

  1. Add "journal" to your INSTALLED_APPS setting like this::
INSTALLED_APPS = [
    ...
    'journal.apps.JournalConfig',
]
  1. Include the "journal" URLconf in your project's 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
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].