You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Drew Bednar c9f60a3661 Initial setup 2 years ago
htmx_contact Initial setup 2 years ago
scripts Initial setup 2 years ago
tests Initial setup 2 years ago
.coveragerc Initial setup 2 years ago
.drone.yml Initial setup 2 years ago
.gitignore Initial setup 2 years ago
.pre-commit-config.yaml Initial setup 2 years ago
LICENSE Initial setup 2 years ago
README.md Initial setup 2 years ago
dev-requirements.in Initial setup 2 years ago
dev-requirements.txt Initial setup 2 years ago
pyproject.toml Initial setup 2 years ago
requirements.in Initial setup 2 years ago
requirements.txt Initial setup 2 years ago
tasks.py Initial setup 2 years ago

README.md

htmx_contact

Learning HTMX by building a the htmx contact.app

First time setup

Create a virtual environment and activate it. Now from the root project directory run ./scripts/bootstrap. This will install pip-tools and sync any dependencies for the first time.

Dependency management

Dependencies are managed via [pip-tools].

Adding a dependency

To add a dependency, edit requirements.in (or dev-requirements.in for dev dependencies) and add your dependency then run pip-compile requirements.in.

Syncing dependencies

Run pip-sync requirements.txt dev_requirements.txt.

Testing

Run the tests by invoking py.test in the project root. Make sure you run any pending migrations beforehand.