-
So I have my webapp via observablehq. I bought a domain name for the public web. And I want to publish my observablehq web app to the public web. But I do not have experience with creating public websites. What are the steps I have to take? I am open to use any tool. Kind regards, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
The easiest thing you can do to make your project visible publicly is with The above will not be able to use the domain name that you purchased however. Custom domains are not currently a feature that Observable supports. You'd have to use a third party web host, such as GitHub pages or Vercel. We are considering this as a future feature though, so stay tuned. You can see some very brief tips about how to go about doing this at the end of the deploy docs mentioned above. |
Beta Was this translation helpful? Give feedback.
The easiest thing you can do to make your project visible publicly is with
npm run deploy
, which will deploy the project to a URL on the observablehq.cloud domain. If you choose to make the project public then anyone will be able to use the URL to see the project. You can learn more about this option here: https://observablehq.com/framework/deploying. For example, I have a public at https://mythmon.observablehq.cloud/workbench/. (There isn't anything too exciting there yet though)The above will not be able to use the domain name that you purchased however. Custom domains are not currently a feature that Observable supports. You'd have to use a third party web host, such as GitHub pages o…