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
- Host: GitHub
- URL: https://github.com/rollinger/diary-app
- Owner: rollinger
- Created: 2021-12-08T09:25:58.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-12-08T15:38:39.000Z (over 4 years ago)
- Last Synced: 2025-02-05T21:53:19.417Z (over 1 year ago)
- Language: Python
- Size: 83 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
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