audio streaming app plyr.fm
38
fork

Configure Feed

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

docs(deployment): correct frontend Pages build config (#1324)

the CF Pages frontend build config described in environments.md was
stale. verified against the live project config on each recreate today:

- build command: `cd frontend && bun run build`
→ `cd frontend && bun install && bun run build`
(SKIP_DEPENDENCY_INSTALL=1 is set to skip CF's auto-install, so the
build command has to run `bun install` itself)

- build output: `frontend/build`
→ `frontend/.svelte-kit/cloudflare`
(matches `pages_build_output_dir` in `frontend/wrangler.toml`)

- env vars list: added `SKIP_DEPENDENCY_INSTALL=1` which was missing

- prod custom domain line: added `www.plyr.fm` alongside `plyr.fm`

same fixes applied to both prod and staging subsections.

Co-authored-by: Claude Opus 4 (1M context) <noreply@anthropic.com>

authored by

nate nowack
Claude Opus 4 (1M context)
and committed by
GitHub
5c6c6b77 af6558f0

+7 -7
+7 -7
docs/internal/deployment/environments.md
··· 97 97 98 98 **plyr-fm** (production): 99 99 - framework: sveltekit 100 - - build command: `cd frontend && bun run build` 101 - - build output: `frontend/build` 100 + - build command: `cd frontend && bun install && bun run build` 101 + - build output: `frontend/.svelte-kit/cloudflare` 102 102 - production branch: `production-fe` 103 - - production environment: `PUBLIC_API_URL=https://api.plyr.fm` 104 - - custom domain: `plyr.fm` 103 + - production environment: `PUBLIC_API_URL=https://api.plyr.fm`, `SKIP_DEPENDENCY_INSTALL=1` 104 + - custom domain: `plyr.fm` (also `www.plyr.fm`) 105 105 106 106 **plyr-fm-stg** (staging): 107 107 - framework: sveltekit 108 - - build command: `cd frontend && bun run build` 109 - - build output: `frontend/build` 108 + - build command: `cd frontend && bun install && bun run build` 109 + - build output: `frontend/.svelte-kit/cloudflare` 110 110 - production branch: `main` 111 - - production environment: `PUBLIC_API_URL=https://api-stg.plyr.fm` 111 + - production environment: `PUBLIC_API_URL=https://api-stg.plyr.fm`, `SKIP_DEPENDENCY_INSTALL=1` 112 112 - custom domain: `stg.plyr.fm` 113 113 114 114 ### docs