No description
  • Python 61.9%
  • CSS 32.9%
  • Makefile 5.2%
Find a file
2025-12-03 20:50:55 +01:00
.github/workflows chore: bootstrap project with copier 2025-11-28 11:20:23 +01:00
assets feat: basic application layout (code and visuals) 2025-12-03 20:50:55 +01:00
curatee-kit feat: basic application layout (code and visuals) 2025-12-03 20:50:55 +01:00
tests chore: bootstrap project with copier 2025-11-28 11:20:23 +01:00
.copier-answers.yml chore: bootstrap project with copier 2025-11-28 11:20:23 +01:00
.gitignore chore: bootstrap project with copier 2025-11-28 11:20:23 +01:00
config.json feat: basic application layout (code and visuals) 2025-12-03 20:50:55 +01:00
CONTRIBUTING.md chore: bootstrap project with copier 2025-11-28 11:20:23 +01:00
ico.ico feat: basic application layout (code and visuals) 2025-12-03 20:50:55 +01:00
Makefile chore: bootstrap project with copier 2025-11-28 11:20:23 +01:00
pyproject.toml feat: basic application layout (code and visuals) 2025-12-03 20:50:55 +01:00
README.md feat: basic application layout (code and visuals) 2025-12-03 20:50:55 +01:00

curateekit

A curation workflow assistant for Thing record collections

Tech Stack

Development

  1. create a virtual environment and activate it (you can skip this if you use uv, it creates and manages the venv for you):
uv venv -p 3.11
source .venv/bin/activate # to activate your virtual environment
  1. install dependencies:
make sync # or directly:
uv sync
  1. start your project:
uv run curatee-kit/main.py
  1. run your tests:
uv run pytest

Updating template settings

To update your project configuration from the nicegui-template, run:

copier update --skip-answered

This will prompt you to review and update your template settings interactively. If you changed a lot of the template files and have the feeling that not everything you expected to update was updated, you can also run:

copier recopy ./path_to_your_project

Be careful with this command, as it will overwrite any local changes you made to the template files. It's recommended to then thoroughly review the changes generated by copier with git.