├── .dev.vars.example ├── .fpxconfig └── .gitignore ├── .gitignore ├── README.md ├── drizzle.config.ts ├── package.json ├── seed.ts ├── src ├── db │ └── schema.ts └── index.ts ├── tsconfig.json └── wrangler.toml /.dev.vars.example: -------------------------------------------------------------------------------- 1 | DATABASE_URL= 2 | OPENAI_API_KEY= 3 | FPX_ENDPOINT= 4 | -------------------------------------------------------------------------------- /.fpxconfig/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiberplane/goose-quotes/HEAD/.fpxconfig/.gitignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiberplane/goose-quotes/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiberplane/goose-quotes/HEAD/README.md -------------------------------------------------------------------------------- /drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiberplane/goose-quotes/HEAD/drizzle.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiberplane/goose-quotes/HEAD/package.json -------------------------------------------------------------------------------- /seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiberplane/goose-quotes/HEAD/seed.ts -------------------------------------------------------------------------------- /src/db/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiberplane/goose-quotes/HEAD/src/db/schema.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiberplane/goose-quotes/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiberplane/goose-quotes/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiberplane/goose-quotes/HEAD/wrangler.toml --------------------------------------------------------------------------------