67d927a refactor: attach subcommands to the root command
~loges pushed to ~loges/mychef git
Minimal, libre recipe recommendation app.
The goal is simple: enter in ingredients you have and get back tasty recipes.
Install package:
pip install mychef
Initialize application:
mychef init
Add a user:
mychef users add
Launch application server:
mychef run
You can configure parts of the application in the shell environment. Here's an example .env
:
# Logging
LOG_LEVEL="info"
# Database
DB_PATH="/./mychef.db"
# Security
SECRET_ALGORITHM="HS256"
SECRET_KEY="<generated-when-initializing-app>"
SECRET_KEY_N_BYTES=32
The easiest way to develop locally with mychef
is to use hatch. With hatch
, you will have access to important helper scripts for running locally, linting, type-checks, testing, etc.
Lint and check types with:
hatch run check
Format code with:
hatch run format
Run test suite:
hatch run test
To upgrade the local database to latest schema, run:
hatch run db:upgrade
Now that the tables are created, you can add fixtures:
hatch run db:fixtures
If you add or update a table, you can generate a migration script by running:
hatch run db:migration
If the migration script wasn't generated, check to see if you imported the model to env.py.
Run the application server locally with:
hatch run dev
The server should reload on changes to the source code.
mychef
is distributed under the terms of the AGPLv3 license.