Copy the example environment file and configure your variables:
cp .env.example .envThen, install the necessary dependencies with the package manager of your choosing:
bun installYou need to then push the SQL schema to your database:
bun run db:pushFinally, either build for production or start a dev server:
# Production
bun run build
bun run start
# Development
bun run devThen, if you want to start importing data, run the injestor:
bun run injestor
-# (yes, I know it's spelled ingestor, the joke is jestor.. jester.. nvm)
