DATABASE_URL="mysql://<username>:<password>@localhost:3306/<database>"
npm install
npm run dev
Note: this is a mono-repo with two packages, client
and server
. The client is a Svelte application and the server is a Hono application. Also uses the concurrently npm package to run both of the apps
To map your data model to the database, you need to run the following command
npm run migrate -- <name-of-migration>
To format the code using prettier, you need to run the following command
npm run format