Once your dev containers are running and you are inside the chatbot_server container, it is easy to create a development database.
First, install dependencies.
pnpm installThen, create the database.
pnpm db:createFinally, run the migrations to build the most current schema.
pnpm db:migrateYou can also delete the whole database, which is sometimes useful. Simply run
pnpm db:dropNote: Any data that was saved will be lost and unrecoverable!