An open API service indexing awesome lists of open source software.

https://github.com/rollinger/diary-app

Simple Diary App
https://github.com/rollinger/diary-app

Last synced: about 1 year ago
JSON representation

Simple Diary App

Awesome Lists containing this project

README

          

DIARY APP
===========

- $> git clone git@github.com:rollinger/diary-app.git
- $> python3 -m venv venv
- $> activate venv
- $> pip install -r requirements.txt
- $> cd diary
- $> python manage.py migrate
- $> python manage.py createsuperuser
- $> python manage.py show_urls # Endpoints Available
- $> python manage.py runserver

API ROOT under /api/

ADMIN under /

Load fixtures:
$> python manage.py loaddata users/fixtures/group_permissions.json

Run tests:
$> pytest