mirror of
https://github.com/calibrain/shelfmark.git
synced 2026-04-21 14:29:26 -04:00
- Adds `uv`, `ruff`, `pyright`, `vulture` and `pytest-xdist` - Move project, lockfile, docker build etc to uv - Align python tooling on 3.14 - Huge bulk of ruff linter fixes applied. Still in progress but all the core types are now enforced - Update CI and test helpers
9 lines
310 B
Python
9 lines
310 B
Python
"""Package entry point for `python -m shelfmark`."""
|
|
|
|
from shelfmark.config.env import FLASK_HOST, FLASK_PORT
|
|
from shelfmark.core.config import config
|
|
from shelfmark.main import app, socketio
|
|
|
|
if __name__ == "__main__":
|
|
socketio.run(app, host=FLASK_HOST, port=FLASK_PORT, debug=config.get("DEBUG", False))
|