Go to file
Luca 18af2a75e6
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/tag Build is passing Details
chore: bump version
2024-11-02 19:59:01 +01:00
.github/workflows initial commit 2023-12-13 23:58:00 +01:00
pretalx_musicrate chore: bump version 2024-11-02 19:59:01 +01:00
.drone.yml ci: only compile messages in pretalx_musicrate/ 2023-12-17 00:01:10 +01:00
.editorconfig style: add .editorconfig 2024-11-02 19:12:14 +01:00
.gitignore style(setup.cfg): add to repository 2023-12-14 01:07:56 +01:00
LICENSE chore: update year 2024-11-02 19:53:14 +01:00
MANIFEST.in initial commit 2023-12-13 23:58:00 +01:00
Makefile initial commit 2023-12-13 23:58:00 +01:00
README.md chore: update year 2024-11-02 19:53:14 +01:00
pyproject.toml fix: remove dependencies ¯\_(ツ)_/¯ 2023-12-16 22:04:07 +01:00
setup.cfg style(isort): use default skip settings 2023-12-18 00:51:41 +01:00

README.md

pretalx-musicrate

This is a pretalx plugin for rating music.

Development setup

  1. Make sure that you have a working pretalx development setup.

  2. Clone this repository, e.g. to local/pretalx-musicrate.

  3. Activate the virtual environment you use for pretalx development.

  4. Run pip install -e . within this directory to register this application with pretalx's plugin registry.

  5. Run make within this directory to compile translations.

  6. Restart your local pretalx server. This plugin should show up in the plugin list shown on startup in the console. You can now use the plugin from this repository for your events by enabling it in the 'plugins' tab in the settings.

This plugin has CI set up to enforce a few code style rules. To check locally, you need these packages installed:

pip install flake8 flake8-bugbear isort black

To check your plugin for rule violations, run:

black --check .
isort -c .
flake8 .

You can auto-fix some of these issues by running:

isort .
black .

License

Copyright 2023-2024 Luca Schmid

Released under the terms of the Apache License 2.0