Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danjac/realworld
https://github.com/danjac/realworld
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/danjac/realworld
- Owner: danjac
- License: mit
- Created: 2022-01-28T21:23:11.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-30T16:15:38.000Z (over 1 year ago)
- Last Synced: 2024-04-16T03:55:53.418Z (10 months ago)
- Language: Python
- Size: 99.6 KB
- Stars: 93
- Watchers: 5
- Forks: 50
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Implementation of real-world application: https://github.com/gothinkster/realworld/ using Django and HTMX.
An in-depth discussion of this implementation can be found [here](https://danjacob.net/posts/anatomyofdjangohtmxproject/).
Tech Stack:
* [Django](https://djangoproject.com)
* [HTMX](https://htmx.org)
* [Alpine](https://alpinejs.dev)To install and run locally:
```bash
git clone https://github.com/danjac/realworld/ && cd realworldpython -m venv venv
source venv/bin/activate
pip install -r requirements.txt
./manage.py migrate && ./manage.py runserver
```**Note: this is just a reference implementation and is not intended for production use.**