mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-12 08:45:38 +02:00
feat: Move API to CF workers (WIP)
This commit is contained in:
12
cloud/infra/api.ts
Normal file
12
cloud/infra/api.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import { urls } from "./urls";
|
||||
import { auth } from "./auth";
|
||||
import { domain } from "./stage";
|
||||
import { secret } from "./secrets";
|
||||
import { database } from "./database";
|
||||
|
||||
export const api = new sst.cloudflare.Worker("Api", {
|
||||
url: true,
|
||||
domain: `api.${domain}`,
|
||||
handler: "cloud/packages/functions/src/api/index.ts",
|
||||
link: [database, secret.POLAR_API_KEY, urls, auth],
|
||||
});
|
||||
Reference in New Issue
Block a user