docs/ai_builder/app_lifecycle/deploy_app.md
import reflex as rx
It is easy to deploy your app into production from Reflex Build to Reflex Cloud.
Simply click the Deploy button in the top right corner of Reflex Build, as shown below:
import reflex as rx
def render_image():
return rx.el.div(
rx.image(
src="https://web.reflex-assets.dev/ai_builder/app_lifecycle/deploy_light.avif",
class_name="rounded-md h-auto",
border=f"0.81px solid {rx.color('slate', 5)}",
),
class_name="w-full flex flex-col rounded-md",
)
rx.el.div(render_image())
When deploying you can set the following options:
myapp as your hostname, your app will be available at myapp.reflex.runLoad from settings buttonNote: Hostname customization, region selection, and VM sizing are only available on paid plans.