Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/einenlum/djangoblog
Simple blog project with django
https://github.com/einenlum/djangoblog
Last synced: about 11 hours ago
JSON representation
Simple blog project with django
- Host: GitHub
- URL: https://github.com/einenlum/djangoblog
- Owner: Einenlum
- Created: 2020-07-28T10:16:28.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T11:21:09.000Z (almost 2 years ago)
- Last Synced: 2023-08-16T10:26:33.576Z (about 1 year ago)
- Language: Python
- Homepage: https://djangoblog-einenlum.herokuapp.com/
- Size: 117 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Djangoblog
This is just a toy project to play with Django, its permissions, its ORM, how to deploy… etc.
Visit the [heroku app](https://djangoblog-einenlum.herokuapp.com/).
## Technical details
* File storage: S3 (thanks to `django-storages`)
* DB: postgres in production, sqlite in development
* Search: Algolia is used (overkill for a blog toy project, but just for fun)## Install
`cp .env.dist .env`
`poetry install`## Tests
In your virtual env:
`python manage.py test blog`
Tests are also automatically run on Github Actions.
## Run
In your virtual env:
`python manage.py runserver`