-
Create
config.tomlfile in thedebias/serverdirectory -
Install dependencies:
uv sync --group server- Development launch:
CONFIG=config.toml uv run litestar --app debias.server:app run --debug --reload- Production launch:
uv run litestar --app debias.server:app run --host 0.0.0.0 --port 8080Server retrieves data from the tables, defined in wordstore service, and aggregates it. Then it serves the data to the client to be rendered. Server also serves the frontend files as well.