Reflex Logo

Intro

Gallery

Hosting

Components

New

Learn

Components

API Reference

Onboarding

Hosting

/

Deploy-quick-start

So far, we have been running our apps locally on our own machines. But what if we want to share our apps with the world? This is where the hosting service comes in.

Reflex’s hosting service makes it easy to deploy your apps without worrying about configuring the infrastructure.

  1. Hosting service requires reflex>=0.3.2.
  2. This tutorial assumes you have successfully reflex init and reflex run your app.
  3. Also make sure you have a requirements.txt file at the top level app directory that contains all your python dependencies!

First, create an account or log into it using the following command.

reflex login

You will be redirected to your browser where you can authenticate through Github or Gmail.

Once you have successfully authenticated, you can start deploying your apps.

Navigate to the project directory that you want to deploy and type the following command:

reflex deploy

The command is by default interactive. It asks you a few questions for information required for the deployment.

Name: choose a name for the deployed app. This name will be part of the deployed app URL, i.e. <app-name>.reflex.run. The name should only contain domain name safe characters: no slashes, no underscores. Domain names are case insensitive. To avoid confusion, the name you choose here is also case insensitive. If you enter letters in upper cases, we automatically convert them to lower cases.

Regions: enter the region code here or press Enter to accept the default. The default code sjc stands for San Jose, California in the US west coast. Check the list of supported regions at reflex deployments regions .

Envs: Envs are environment variables. You might not have used them at all in your app. In that case, press Enter to skip. More on the environment variables in the later section Environment Variables .

That’s it! You should receive some feedback on the progress of your deployment and in a few minutes your app should be up. 🎉

Below is a video of deploying the AI chat app to our hosting service.

← Other MethodsHosting CLI Commands →

Did you find this useful?