Chefkit Backend powers the server-side services for the Chefkit ecosystem. It is a Python backend focused on API, data processing, and service integrations.
- Python
- FastAPI-style service workflows (project scripts + service entrypoint)
- Structured docs and data assets under
docs/anddata/
main.py # Main backend entrypoint
utils.py # Utility helpers
requirements.txt # Python dependencies
data/ # Dataset and runtime data
files
scripts
python -m venv .venv
.venv\Scripts\activate
pip install -r requirements.txt
python main.py- Configure local environment variables in
.envwhen needed. - Keep sensitive keys (
serviceAccountKey.json, etc.) out of public exposure.
- This backend pairs with
Chefkit-Onlinefor web-facing UX. - Review
plan.mdanddocs/for architecture and feature context.