Setup fly.io deployments

This commit is contained in:
Dominic Ferrando
2026-07-01 14:47:52 -04:00
parent 2454d68e24
commit ab6eb56814
16 changed files with 248 additions and 456 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
import { treaty } from "@elysia/eden"
import type { API } from "@blade-and-brawn/api"
import { PUBLIC_API_URL } from "$env/static/public"
import { env } from "$env/dynamic/public"
export const api = treaty<API>(PUBLIC_API_URL, {
export const api = treaty<API>(env.PUBLIC_API_URL, {
fetch: {
credentials: "include",
},
@@ -1,20 +1,13 @@
import { PrintfulClient, WebflowClient } from "@blade-and-brawn/commerce";
import {
PRINTFUL_AUTH,
PRINTFUL_STORE_ID,
WEBFLOW_SITE_ID,
WEBFLOW_COLLECTION_ID,
WEBFLOW_AUTH,
WEBFLOW_WEBHOOK_SECRET,
} from "$env/static/private";
import { env } from "$env/dynamic/private";
import type { PageServerLoad } from "./$types";
const printful = new PrintfulClient({ token: PRINTFUL_AUTH, storeId: PRINTFUL_STORE_ID });
const printful = new PrintfulClient({ token: env.PRINTFUL_AUTH, storeId: env.PRINTFUL_STORE_ID });
const webflow = new WebflowClient({
siteId: WEBFLOW_SITE_ID,
collectionsId: WEBFLOW_COLLECTION_ID,
token: WEBFLOW_AUTH,
webhookSecret: WEBFLOW_WEBHOOK_SECRET,
siteId: env.WEBFLOW_SITE_ID,
collectionsId: env.WEBFLOW_COLLECTION_ID,
token: env.WEBFLOW_AUTH,
webhookSecret: env.WEBFLOW_WEBHOOK_SECRET,
});
export const load = async ({ }: Parameters<PageServerLoad>[0]) => {