Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 380 Bytes

misc.md

File metadata and controls

29 lines (20 loc) · 380 Bytes

Misc (old readme)

Migrations

alembic init -t async alembic
alembic revision --autogenerate -m "Migration name"
alembic upgrade head

Meilisearch

./meilisearch --http-addr 127.0.0.1:8800 --env development --master-key xyz

Ruff check

ruff check app/

PostgreSQL

Enable Ltree:

CREATE EXTENSION IF NOT EXISTS ltree;