Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

A demo web app for reminders built in Python using FastAPI and HTMX

License

NotificationsYou must be signed in to change notification settings

AutomationPanda/bulldoggy-reminders-app

Repository files navigation

Bulldoggy Logo

Bulldoggy: The Reminders App

Bulldoggy is a small demo web app for tracking reminders.It uses:

Learning how it works

Development and testing are two sides of the same coin:

  1. To learn how todevelop the Bulldoggy app, watch my PyTexas 2023 keynote,Full-Stack Python.
  2. To learn how totest the Bulldoggy app, watch my DjangoCon US 2023 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 avirtual environment.

Running the app

To run the app:

uvicorn app.main:app --reload

Then, open your browser tohttp://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

Theconfig.json file declares the users for the app.You may use any configured user credentials, or change them to your liking.The "default" username ispythonista with the passwordI<3testing.

Setting the database path

The app uses TinyDB, which stores the database as a JSON file.The default database filepath isreminder_db.json.You may change this path inconfig.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

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

Reading the docs

To read the API docs, open the following pages:

  • /docs for classic OpenAPI docs
  • /redoc for more modern ReDoc docs

Why did I build this app in Python?

Personally, I love Python, and I wanted to demonstrate how tobuild a full-stack modern web appentirely 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 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 contentdirectly in HTMLwithout 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 myPyTexas 2023 keynote,Full-Stack Python.

Credits

TODO list

  • Automate API tests
  • Automate UI tests
  • Automate unit tests

Contributors2

  •  
  •  

[8]ページ先頭

©2009-2025 Movatter.jp