├── .dev.vars.example ├── .gitignore ├── README.md ├── bun.lockb ├── drizzle.config.ts ├── drizzle ├── 0000_rare_silver_fox.sql └── meta │ ├── 0000_snapshot.json │ └── _journal.json ├── migrate.ts ├── package.json ├── src ├── db │ └── schema.ts └── index.ts ├── tsconfig.json └── wrangler.toml /.dev.vars.example: -------------------------------------------------------------------------------- 1 | DATABASE_URL="" -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/hono-starter-kit/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/hono-starter-kit/HEAD/README.md -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/hono-starter-kit/HEAD/bun.lockb -------------------------------------------------------------------------------- /drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/hono-starter-kit/HEAD/drizzle.config.ts -------------------------------------------------------------------------------- /drizzle/0000_rare_silver_fox.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/hono-starter-kit/HEAD/drizzle/0000_rare_silver_fox.sql -------------------------------------------------------------------------------- /drizzle/meta/0000_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/hono-starter-kit/HEAD/drizzle/meta/0000_snapshot.json -------------------------------------------------------------------------------- /drizzle/meta/_journal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/hono-starter-kit/HEAD/drizzle/meta/_journal.json -------------------------------------------------------------------------------- /migrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/hono-starter-kit/HEAD/migrate.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/hono-starter-kit/HEAD/package.json -------------------------------------------------------------------------------- /src/db/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/hono-starter-kit/HEAD/src/db/schema.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/hono-starter-kit/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/hono-starter-kit/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelshimeles/hono-starter-kit/HEAD/wrangler.toml --------------------------------------------------------------------------------