Meme Server Potential.
Install uv for package management.
This project also uses ruff for code formatting and linting, and optionally pre-commit for additional checks.
-
Install dependencies:
uv sync --all-extras uv run pre-commit install
-
Run the server:
uv run chat_server.py
Format code:
uv run ruff format .Lint code:
uv run ruff check .Auto-fix issues:
uv run ruff check --fix .uv sync- Install dependenciesuv add <package>- Add a dependencyuv run <command>- Run a command in the project environment