Bootstrap monorepo: Bun + Hono backend, Next.js frontend, Doppler secrets#29
Merged
Bootstrap monorepo: Bun + Hono backend, Next.js frontend, Doppler secrets#29
Conversation
….json, .env.example, doppler.yaml, README
…nav, placeholder pages
- 22 scenarios covering all 20 acceptance criteria checkboxes - Organized by section: monorepo structure, backend, frontend, Doppler, dev experience - Feature file: specs/features/bootstrap-monorepo.feature
…#26 Closes coverage gap for acceptance criterion: Backend reads secrets via process.env (Doppler injects at runtime). Feature file now has 24 scenarios covering all 20 acceptance criteria checkboxes.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #26
Summary
Scaffolds the full monorepo with two workspaces (
apps/apiandapps/web), wired to Doppler for secrets management.Monorepo structure
package.jsonwithworkspaces: ["apps/*"]and concurrent dev scripttsconfig.base.jsonwith TypeScript strict mode.gitignorecoveringnode_modules,.env*,dist/,.next/,*.dbBackend (
apps/api)GET /healthreturning{ status: "ok" }src/index.ts,src/routes/,src/services/,src/db/,src/lib/bun run devstarts with--hotreload on port 4000http://localhost:3000)Frontend (
apps/web)@tailwindcss/postcss)NEXT_PUBLIC_API_URLfrom envDoppler integration
doppler.yamlpointing tovirtual-agentproject /devconfig.env.exampledocumenting all 7 expected env varsdoppler run -- bun run devworkflowprocess.env(Doppler injects at runtime)Dev experience
bun run devstarts both apps concurrentlyTests
specs/features/bootstrap-monorepo.feature