Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/AutomationPanda/bulldoggy-reminders-app
A demo web app for reminders built in Python using FastAPI and HTMX
https://github.com/AutomationPanda/bulldoggy-reminders-app
api-testing bulldoggy css fastapi html htmx jinja playwright pydantic pytest python requests software-testing test-automation the-way-to-test-software tinydb web web-testing
Last synced: about 2 months ago
JSON representation
A demo web app for reminders built in Python using FastAPI and HTMX
- Host: GitHub
- URL: https://github.com/AutomationPanda/bulldoggy-reminders-app
- Owner: AutomationPanda
- License: mit
- Created: 2023-03-01T02:53:22.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-08T20:44:08.000Z (10 months ago)
- Last Synced: 2024-11-14T03:04:11.965Z (about 2 months ago)
- Topics: api-testing, bulldoggy, css, fastapi, html, htmx, jinja, playwright, pydantic, pytest, python, requests, software-testing, test-automation, the-way-to-test-software, tinydb, web, web-testing
- Language: Python
- Homepage:
- Size: 2.25 MB
- Stars: 271
- Watchers: 6
- Forks: 41
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-python-htmx - Bulldoggy: The Reminders App - FastAPI-a9bbcc?style=flat&logo=fastapi&logoColor=black" alt="FastAPI"></a> Bulldoggy is a small demo web app for tracking reminders. Uses htmx to handle `GET`, `POST`, `PATCH` requests in a fully-functioning to-do frontend. (Third Party Packages 📦 <a name = "tools"></a> / Demos)
README
![Bulldoggy Logo](static/img/logos/bulldoggy-100px.png)
# Bulldoggy: The Reminders App
*Bulldoggy* is a small demo web app for tracking reminders.
It uses:* [Python](https://www.python.org/) as the main programming language
* [FastAPI](https://fastapi.tiangolo.com/) for the backend
* [HTMX](https://htmx.org/) 1.8.6 for handling dynamic interactions (instead of raw JavaScript)
* [Jinja templates](https://jinja.palletsprojects.com/en/3.1.x/) with HTML and CSS for the frontend
* [TinyDB](https://tinydb.readthedocs.io/en/latest/index.html) for the database
* [Playwright](https://playwright.dev/python/) and [pytest](https://docs.pytest.org/) for testing## Learning how it works
Development and testing are two sides of the same coin:
1. To learn how to *develop* the Bulldoggy app, watch my PyTexas 2023 keynote, [*Full-Stack Python*](https://www.youtube.com/watch?v=ka5KRLUn47s).
2. To learn how to *test* the Bulldoggy app, watch my DjangoCon US 2023 keynote, [*Testing Modern Web Apps Like A Champion*](https://2023.djangocon.us/talks/keynote-testing-modern-web-apps-like-a-champion/).These two keynotes are bookends for each other.
## Installing dependencies
You will need a recent version of Python to run this app.
To install project dependencies:```
pip install -r requirements.txt
```It is recommended to install dependencies into a [virtual environment](https://docs.python.org/3/library/venv.html).
## Running the app
To run the app:
```
uvicorn app.main:app --reload
```Then, open your browser to [`http://127.0.0.1:8000`](http://127.0.0.1:8000) to load the app.
## Running the app with Docker
Build the image with:
```
docker build -t bulldoggy-reminders-app:0.1 .
```To run the image:
```
docker run -it --rm --name bulldoggy-reminders-app -p 8000:8000 bulldoggy-reminders-app:0.1
```## Logging into the app
The [`config.json`](config.json) file declares the users for the app.
You may use any configured user credentials, or change them to your liking.
The "default" username is `pythonista` with the password `I<3testing`.## Setting the database path
The app uses TinyDB, which stores the database as a JSON file.
The default database filepath is `reminder_db.json`.
You may change this path in [`config.json`](config.json).
If you change the filepath, the app will automatically create a new, empty database.## Using the app
Bulldoggy is a reminders app.
After you log in, you can create reminder lists.![Bulldoggy login](static/img/readme/bulldoggy-login.png)
Each reminder list appears on the left,
and the items in the list appear on the right.
You may add, delete, or edit lists and items.
You may also strike out completed items.![Bulldoggy reminders](static/img/readme/bulldoggy-reminders.png)
## Reading the docs
To read the API docs, open the following pages:
* [`/docs`](http://127.0.0.1:8000/docs) for classic OpenAPI docs
* [`/redoc`](http://127.0.0.1:8000/redoc) for more modern ReDoc docs## Why did I build this app in Python?
Personally, I love Python, and I wanted to demonstrate how to **build a full-stack modern web app *entirely* with Python**.
JavaScript essentially has a near-monopoly on front-end web development.
Browsers require JavaScript code to perform dynamic web page interactions.
However, [HTMX](https://htmx.org/) offers a novel way to sidestep this limitation:
it provides special HTML attributes to denote dynamic interactions for elements.
Under the hood, HTMX uses AJAX to issue HTTP requests and swap hypertext contents for elements targetted with its special attributes.
JavaScript is still there – you just don't need to touch it!This enables web frameworks in languages like Python, Go, Java, and others to offer dynamic web page content
directly in HTML *without* requiring developers to explicitly code any JavaScript.
HTMX empowers you, as a developer, to build beautiful web apps while remaining in the tech stack of your choice!To learn more about this app's design, please watch my [PyTexas](https://www.pytexas.org/) 2023 keynote,
[*Full-Stack Python*](https://www.youtube.com/watch?v=ka5KRLUn47s).## Credits
* I used [DALL-E](https://labs.openai.com/) to generate the Bulldoggy logo
* I used [ChatGPT](https://chat-gpt.org/chat) to generate parts of the HTML and CSS
* [Michael Kennedy](https://twitter.com/mkennedy)'s talks at [PyBay 2021](https://www.youtube.com/watch?v=10G874qqtrc) and [Python Web Conference 2022](https://www.youtube.com/watch?v=10G874qqtrc_) on Python + HTMX inspired me
* The [HTMX docs](https://htmx.org/docs/) and [examples](https://htmx.org/examples/) taught me how to use HTMX
* A few friends from Twitter and LinkedIn helped me test the app:
* [Juan Rosello](https://www.linkedin.com/in/juanrosello/)
* [Sharib Islam](https://www.linkedin.com/in/sharibislamqa/)
* [therunninglight](https://twitter.com/therunninglight)
* [enigma5312](https://twitter.com/enigma5312)
* [MrpoSr](https://twitter.com/MrpoSr)## TODO list
* Automate API tests
* Automate UI tests
* Automate unit tests