🚀 Architecture Update: Independent App Deployments #2106
koistya
announced in
Announcements
Replies: 1 comment 2 replies
-
Thanks! I am confused by wrangler's configuration, and this just solved my problem. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
🚀 Architecture Update: Independent App Deployments
Just merged a significant refactor that simplifies our codebase and deployment process!
What changed:
wrangler.jsonc
configThe big win: You can now deploy each app independently! 🎯
bun web:deploy
- Deploy marketing site alonebun app:deploy
- Deploy main app alonebun api:deploy
- Deploy backend aloneNo more deploying everything when you just changed one thing. Deploy what you changed, when you need to.
Migration notes:
bun edge:dev
→ New:bun api:dev
This makes our deployment pipeline way more flexible and faster for iterative development. Check out PR #2105 for full details.
Beta Was this translation helpful? Give feedback.
All reactions