How do I deploy OrbitOS to a custom domain instead of Vercel? #46
Answered
by
dailker
IsmailBinMujeeb
asked this question in
Q&A
-
How do I deploy OrbitOS to a custom domain instead of Vercel? |
Beta Was this translation helpful? Give feedback.
Answered by
dailker
Oct 3, 2025
Replies: 1 comment
-
To deploy to a custom domain: |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
IsmailBinMujeeb
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To deploy to a custom domain:
1. Build the frontend:
npm run build
.2. Deploy to a hosting provider (e.g., Netlify, AWS S3).
3. Configure the domain in your provider’s DNS settings.
4. Update
next.config.js
for custom basePath if needed:javascript<br>module.exports = { basePath: '/my-orbitos' };<br>
5. For the backend, deploy
src/server/
to a Node.js host (e.g., Heroku) and updateDEPLOYMENT.md
.6. Test and submit a pull request with documentation.