-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathalchemy.run.ts
61 lines (53 loc) · 1.36 KB
/
alchemy.run.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// we don't use node in ./src/**, only here for alchemy to bootstrap CloudFlare
import "@types/node";
import alchemy from "alchemy";
import {
DurableObjectNamespace,
KVNamespace,
R2Bucket,
StaticSite,
Worker,
} from "alchemy/cloudflare";
const app = alchemy("cloudflare-vite", {
stage: process.env.USER ?? "dev",
phase: process.argv.includes("--destroy") ? "destroy" : "up",
quiet: process.argv.includes("--verbose") ? false : true,
});
export const [authStore, storage] = await Promise.all([
KVNamespace("AUTH_STORE", {
title: "alchemy-example-auth-store",
}),
R2Bucket("storage", {
name: "alchemy-example-storage",
allowPublicAccess: false,
}),
]);
export const counter = new DurableObjectNamespace("COUNTER", {
className: "Counter",
sqlite: true,
});
export const api = await Worker("api", {
name: "alchemy-example-vite-api",
entrypoint: "./src/index.ts",
bindings: {
COUNTER: counter,
STORAGE: storage,
AUTH_STORE: authStore,
GITHUB_CLIENT_ID: alchemy.secret(process.env.GITHUB_CLIENT_ID),
GITHUB_CLIENT_SECRET: alchemy.secret(process.env.GITHUB_CLIENT_SECRET),
},
});
export const website = await StaticSite("Website", {
name: "alchemy-example-vite",
dir: "./dist",
build: {
command: "bun run build",
},
routes: {
"/api/*": api,
},
});
console.log({
url: website.url,
});
await app.finalize();