Index
Development¶
Development of this system depends on you having four things installed:
- docker (with the compose addon)
- the postgresql command line tool
- python 3.12 (ideally using mise)
- pdm
The instructions here are for macOS; where appropriate, they'll proffer a Linux equivalent.
Info
Regrettably, I don't develop on Windows; I would welcome Windows versions of these instructions!
Install your dependencies¶
On macOS, that means installing copier, uv, and just. For simplicity these instructions will assume that you have homebrew installed, and follow the instructions to set your PATH for each tool.
-
Just
Just is a task runner; it uses a Justfile to describe steps to run, and I use it here to manage the setup and development processes.
Install it from your package manager:
-
Python
"How to install Python" is beyond the scope of this README, sorry; I use mise but any method will work. When you have it set up, you should be able to run this code in the source directory and get something vaguely correct:
-
uv
uv should be in your system package manager; on macOS that's probably homebrew:
-
Docker compose
"Installing docker" is also beyond the scope here. You probably want Docker Desktop. Once it's installed, this should work:
Generate a test convention¶
Using copier, create a new convention project:
Note the --trust
flag; that's because the template uses the _tasks
key,
which runs some postprocessing on the generated template to verify it all works.
Feel free to check out the contents of the copier configuration to make sure it's safe.