Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 433 Bytes

contributing.md

File metadata and controls

31 lines (21 loc) · 433 Bytes

dev notes

Local development

make up # starts all the containers that are needed like postgres, y-sweet, ollama

postgres

Migration quick commands:

goose up
goose redo
goose down

Generating queries:

make sqlc

ysweet

The auth key is supposed to be a 30 byte random base64 string. You can generate one using the following command:

openssl rand -base64 30 | pbcopy