Skip to content

Commit fc4f281

Browse files
author
Frank
committed
wip: zen
1 parent f8c4f71 commit fc4f281

155 files changed

Lines changed: 400 additions & 400 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

bun.lock

Lines changed: 42 additions & 42 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cloud/function/sst-env.d.ts

Lines changed: 0 additions & 96 deletions
This file was deleted.

cloud/resource/sst-env.d.ts

Lines changed: 0 additions & 96 deletions
This file was deleted.

github/sst-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
/// <reference path="../sst-env.d.ts" />
77

88
import "sst"
9-
export {}
9+
export {}

infra/cloud.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ new sst.x.DevCommand("Studio", {
4444
link: [database],
4545
dev: {
4646
command: "bun db studio",
47-
directory: "cloud/core",
47+
directory: "packages/cloud/core",
4848
autostart: true,
4949
},
5050
})
@@ -59,7 +59,7 @@ const GOOGLE_CLIENT_ID = new sst.Secret("GOOGLE_CLIENT_ID")
5959
const authStorage = new sst.cloudflare.Kv("AuthStorage")
6060
export const auth = new sst.cloudflare.Worker("AuthApi", {
6161
domain: `auth.${domain}`,
62-
handler: "cloud/function/src/auth.ts",
62+
handler: "packages/cloud/function/src/auth.ts",
6363
url: true,
6464
link: [database, authStorage, GITHUB_CLIENT_ID_CONSOLE, GITHUB_CLIENT_SECRET_CONSOLE, GOOGLE_CLIENT_ID],
6565
})
@@ -120,14 +120,14 @@ let logProcessor
120120
if ($app.stage === "production" || $app.stage === "frank") {
121121
const HONEYCOMB_API_KEY = new sst.Secret("HONEYCOMB_API_KEY")
122122
logProcessor = new sst.cloudflare.Worker("LogProcessor", {
123-
handler: "cloud/function/src/log-processor.ts",
123+
handler: "packages/cloud/function/src/log-processor.ts",
124124
link: [HONEYCOMB_API_KEY],
125125
})
126126
}
127127

128128
new sst.cloudflare.x.SolidStart("Console", {
129129
domain,
130-
path: "cloud/app",
130+
path: "packages/cloud/app",
131131
link: [
132132
database,
133133
AUTH_API_URL,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
},
1313
"workspaces": {
1414
"packages": [
15-
"cloud/*",
1615
"packages/*",
16+
"packages/cloud/*",
1717
"packages/sdk/js"
1818
],
1919
"catalog": {

packages/app/sst-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
/// <reference path="../../sst-env.d.ts" />
77

88
import "sst"
9-
export {}
9+
export {}

0 commit comments

Comments
 (0)