├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ └── test.yaml ├── .gitignore ├── .husky └── pre-commit ├── .prettierrc.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets.d.ts ├── banner.png ├── dist ├── caret.svg ├── index.ts └── plugins.ts ├── install.sh ├── package.json ├── plugins ├── cdc │ ├── README.md │ ├── index.test.ts │ ├── index.ts │ └── meta.json ├── clerk │ ├── README.md │ ├── index.ts │ ├── meta.json │ └── sql │ │ ├── create-session-table.sql │ │ ├── create-user-table.sql │ │ ├── delete-session.sql │ │ ├── delete-user.sql │ │ ├── get-session.sql │ │ ├── get-user-information.sql │ │ ├── upsert-session.sql │ │ └── upsert-user.sql ├── cron │ ├── README.md │ ├── index.ts │ └── utils.ts ├── interface │ ├── components │ │ ├── avatar │ │ │ └── index.tsx │ │ ├── button │ │ │ └── Button.tsx │ │ ├── card │ │ │ └── index.tsx │ │ ├── input │ │ │ └── Input.tsx │ │ ├── label │ │ │ └── Label.tsx │ │ ├── loader │ │ │ └── Loader.tsx │ │ ├── select │ │ │ └── index.tsx │ │ └── toggle │ │ │ └── index.tsx │ ├── index.tsx │ ├── pages │ │ └── template │ │ │ └── index.tsx │ ├── public │ │ ├── caret.svg │ │ ├── favicon.svg │ │ └── global.css │ └── utils │ │ └── index.tsx ├── query-log │ ├── index.test.ts │ └── index.ts ├── resend │ └── index.ts ├── sql-macros │ ├── README.md │ ├── index.ts │ └── meta.json ├── stats │ └── index.ts ├── stripe │ ├── README.md │ ├── index.ts │ └── meta.json ├── studio │ ├── handler.ts │ └── index.ts └── websocket │ └── index.ts ├── pnpm-lock.yaml ├── public └── .vite │ └── manifest.json ├── src ├── allowlist │ └── index.ts ├── api │ ├── index.test.ts │ └── index.ts ├── cache │ ├── index.test.ts │ └── index.ts ├── cors.test.ts ├── cors.ts ├── do.test.ts ├── do.ts ├── export │ ├── csv.test.ts │ ├── csv.ts │ ├── dump.test.ts │ ├── dump.ts │ ├── index.test.ts │ ├── index.ts │ ├── json.test.ts │ └── json.ts ├── handler.test.ts ├── handler.ts ├── import │ ├── csv.ts │ ├── dump.test.ts │ ├── dump.ts │ ├── json.test.ts │ └── json.ts ├── index.ts ├── literest │ ├── README.md │ ├── index.test.ts │ └── index.ts ├── operation.test.ts ├── operation.ts ├── plugin.test.ts ├── plugin.ts ├── rls │ ├── index.test.ts │ └── index.ts ├── sql │ └── user.sql ├── types.test.ts ├── types.ts ├── utils.test.ts └── utils.ts ├── templates └── auth │ ├── package.json │ ├── src │ ├── README.md │ ├── email │ │ └── index.ts │ ├── index.ts │ ├── migration.sql │ └── utils.ts │ ├── worker-configuration.d.ts │ └── wrangler.toml ├── tsconfig.json ├── vite.config.ts ├── vitest.config.ts ├── worker-configuration.d.ts └── wrangler.toml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | pnpm exec lint-staged 2 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/README.md -------------------------------------------------------------------------------- /assets.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/assets.d.ts -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/banner.png -------------------------------------------------------------------------------- /dist/caret.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/dist/caret.svg -------------------------------------------------------------------------------- /dist/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/dist/index.ts -------------------------------------------------------------------------------- /dist/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/dist/plugins.ts -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/install.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/package.json -------------------------------------------------------------------------------- /plugins/cdc/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/cdc/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/cdc/index.test.ts -------------------------------------------------------------------------------- /plugins/cdc/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/cdc/index.ts -------------------------------------------------------------------------------- /plugins/cdc/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/cdc/meta.json -------------------------------------------------------------------------------- /plugins/clerk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/clerk/README.md -------------------------------------------------------------------------------- /plugins/clerk/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/clerk/index.ts -------------------------------------------------------------------------------- /plugins/clerk/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/clerk/meta.json -------------------------------------------------------------------------------- /plugins/clerk/sql/create-session-table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/clerk/sql/create-session-table.sql -------------------------------------------------------------------------------- /plugins/clerk/sql/create-user-table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/clerk/sql/create-user-table.sql -------------------------------------------------------------------------------- /plugins/clerk/sql/delete-session.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/clerk/sql/delete-session.sql -------------------------------------------------------------------------------- /plugins/clerk/sql/delete-user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/clerk/sql/delete-user.sql -------------------------------------------------------------------------------- /plugins/clerk/sql/get-session.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/clerk/sql/get-session.sql -------------------------------------------------------------------------------- /plugins/clerk/sql/get-user-information.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/clerk/sql/get-user-information.sql -------------------------------------------------------------------------------- /plugins/clerk/sql/upsert-session.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/clerk/sql/upsert-session.sql -------------------------------------------------------------------------------- /plugins/clerk/sql/upsert-user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/clerk/sql/upsert-user.sql -------------------------------------------------------------------------------- /plugins/cron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/cron/README.md -------------------------------------------------------------------------------- /plugins/cron/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/cron/index.ts -------------------------------------------------------------------------------- /plugins/cron/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/cron/utils.ts -------------------------------------------------------------------------------- /plugins/interface/components/avatar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/interface/components/avatar/index.tsx -------------------------------------------------------------------------------- /plugins/interface/components/button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/interface/components/button/Button.tsx -------------------------------------------------------------------------------- /plugins/interface/components/card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/interface/components/card/index.tsx -------------------------------------------------------------------------------- /plugins/interface/components/input/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/interface/components/input/Input.tsx -------------------------------------------------------------------------------- /plugins/interface/components/label/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/interface/components/label/Label.tsx -------------------------------------------------------------------------------- /plugins/interface/components/loader/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/interface/components/loader/Loader.tsx -------------------------------------------------------------------------------- /plugins/interface/components/select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/interface/components/select/index.tsx -------------------------------------------------------------------------------- /plugins/interface/components/toggle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/interface/components/toggle/index.tsx -------------------------------------------------------------------------------- /plugins/interface/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/interface/index.tsx -------------------------------------------------------------------------------- /plugins/interface/pages/template/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/interface/pages/template/index.tsx -------------------------------------------------------------------------------- /plugins/interface/public/caret.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/interface/public/caret.svg -------------------------------------------------------------------------------- /plugins/interface/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/interface/public/favicon.svg -------------------------------------------------------------------------------- /plugins/interface/public/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/interface/public/global.css -------------------------------------------------------------------------------- /plugins/interface/utils/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/interface/utils/index.tsx -------------------------------------------------------------------------------- /plugins/query-log/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/query-log/index.test.ts -------------------------------------------------------------------------------- /plugins/query-log/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/query-log/index.ts -------------------------------------------------------------------------------- /plugins/resend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/resend/index.ts -------------------------------------------------------------------------------- /plugins/sql-macros/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/sql-macros/README.md -------------------------------------------------------------------------------- /plugins/sql-macros/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/sql-macros/index.ts -------------------------------------------------------------------------------- /plugins/sql-macros/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/sql-macros/meta.json -------------------------------------------------------------------------------- /plugins/stats/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/stats/index.ts -------------------------------------------------------------------------------- /plugins/stripe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/stripe/README.md -------------------------------------------------------------------------------- /plugins/stripe/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/stripe/index.ts -------------------------------------------------------------------------------- /plugins/stripe/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/stripe/meta.json -------------------------------------------------------------------------------- /plugins/studio/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/studio/handler.ts -------------------------------------------------------------------------------- /plugins/studio/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/studio/index.ts -------------------------------------------------------------------------------- /plugins/websocket/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/plugins/websocket/index.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/.vite/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/public/.vite/manifest.json -------------------------------------------------------------------------------- /src/allowlist/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/allowlist/index.ts -------------------------------------------------------------------------------- /src/api/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/api/index.test.ts -------------------------------------------------------------------------------- /src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/api/index.ts -------------------------------------------------------------------------------- /src/cache/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/cache/index.test.ts -------------------------------------------------------------------------------- /src/cache/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/cache/index.ts -------------------------------------------------------------------------------- /src/cors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/cors.test.ts -------------------------------------------------------------------------------- /src/cors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/cors.ts -------------------------------------------------------------------------------- /src/do.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/do.test.ts -------------------------------------------------------------------------------- /src/do.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/do.ts -------------------------------------------------------------------------------- /src/export/csv.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/export/csv.test.ts -------------------------------------------------------------------------------- /src/export/csv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/export/csv.ts -------------------------------------------------------------------------------- /src/export/dump.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/export/dump.test.ts -------------------------------------------------------------------------------- /src/export/dump.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/export/dump.ts -------------------------------------------------------------------------------- /src/export/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/export/index.test.ts -------------------------------------------------------------------------------- /src/export/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/export/index.ts -------------------------------------------------------------------------------- /src/export/json.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/export/json.test.ts -------------------------------------------------------------------------------- /src/export/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/export/json.ts -------------------------------------------------------------------------------- /src/handler.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/handler.test.ts -------------------------------------------------------------------------------- /src/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/handler.ts -------------------------------------------------------------------------------- /src/import/csv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/import/csv.ts -------------------------------------------------------------------------------- /src/import/dump.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/import/dump.test.ts -------------------------------------------------------------------------------- /src/import/dump.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/import/dump.ts -------------------------------------------------------------------------------- /src/import/json.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/import/json.test.ts -------------------------------------------------------------------------------- /src/import/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/import/json.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/literest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/literest/README.md -------------------------------------------------------------------------------- /src/literest/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/literest/index.test.ts -------------------------------------------------------------------------------- /src/literest/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/literest/index.ts -------------------------------------------------------------------------------- /src/operation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/operation.test.ts -------------------------------------------------------------------------------- /src/operation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/operation.ts -------------------------------------------------------------------------------- /src/plugin.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/plugin.test.ts -------------------------------------------------------------------------------- /src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/plugin.ts -------------------------------------------------------------------------------- /src/rls/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/rls/index.test.ts -------------------------------------------------------------------------------- /src/rls/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/rls/index.ts -------------------------------------------------------------------------------- /src/sql/user.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/types.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/types.test.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/utils.test.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/src/utils.ts -------------------------------------------------------------------------------- /templates/auth/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/templates/auth/package.json -------------------------------------------------------------------------------- /templates/auth/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/templates/auth/src/README.md -------------------------------------------------------------------------------- /templates/auth/src/email/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/templates/auth/src/email/index.ts -------------------------------------------------------------------------------- /templates/auth/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/templates/auth/src/index.ts -------------------------------------------------------------------------------- /templates/auth/src/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/templates/auth/src/migration.sql -------------------------------------------------------------------------------- /templates/auth/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/templates/auth/src/utils.ts -------------------------------------------------------------------------------- /templates/auth/worker-configuration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/templates/auth/worker-configuration.d.ts -------------------------------------------------------------------------------- /templates/auth/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/templates/auth/wrangler.toml -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/vite.config.ts -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/vitest.config.ts -------------------------------------------------------------------------------- /worker-configuration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/worker-configuration.d.ts -------------------------------------------------------------------------------- /wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outerbase/starbasedb/HEAD/wrangler.toml --------------------------------------------------------------------------------