The recipes.blue monorepo recipes.blue
recipes appview atproto
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: NEW DOMAAAAAAAAIIIINNNNN!!!!

+7 -1
+4 -1
apps/api/src/config/env.ts
··· 6 6 7 7 PUBLIC_DIR: z.string().default('../web/dist'), 8 8 9 - CORS_ORIGINS: z.array(z.string()).default(['http://localhost:5173', 'https://cookware.dev.hayden.moe']), 9 + CORS_ORIGINS: z 10 + .string() 11 + .transform((arg) => arg.split(',')) 12 + .default('http://localhost:5173,https://cookware.dev.hayden.moe'), 10 13 11 14 PLC_DIRECTORY_URL: z.string().url().default('https://plc.directory'), 12 15
+3
fly.toml
··· 8 8 web = "bash -c 'cd apps/api && node dist/index.js'" 9 9 ingester = "bash -c 'cd apps/ingester && node dist/index.js'" 10 10 11 + [env] 12 + CORS_ORIGINS = "https://recipes.blue" 13 + 11 14 [deploy] 12 15 release_command = "bash -c 'cd libs/database && pnpm db:migrate'" 13 16