Launch a demo app

In this step-by-step guide you’ll use Fly Launch to deploy a simple “hello fly” demo app to Fly.io.

The first step is installing all the tools you need to work with Fly Launch. Which is one tool: flyctl.

1. Install flyctl

flyctl is a command-line utility that lets you work with Fly.io, from creating your account to deploying your applications. It runs on your local device so you’ll want to install the version that’s appropriate for your operating system.

macOS

If you have the Homebrew package manager installed, flyctl can be installed by running:

brew install flyctl

If not, you can run the install script:

curl -L https://fly.io/install.sh | sh

If you used curl to install flyctl, then you need to add the flyctl directory to your shell rc file. Check the output of the install script for the entries to copy and paste into the file. Now you can use the fly command from any directory.

Linux

Run the install script:

curl -L https://fly.io/install.sh | sh

Windows

Run the PowerShell install script:

pwsh -Command "iwr https://fly.io/install.ps1 -useb | iex"

If you encounter an error saying the pwsh command is not found, powershell can be used instead, though we recommend installing the latest version of PowerShell.

2. Sign up or sign in

Sign up for an account or sign in to your existing account.

Sign up for a Fly.io account

If it’s your first time using Fly.io, you’ll need to create an account. To sign up, run:

fly auth signup

This will take you to the sign-up page where you can use your email address, your Google account, or your GitHub account to create a Fly.io account. When you sign up with GitHub, look out for the confirmation email we’ll send you, with a link to set a password; you’ll need a password so we can actively verify that it’s you for some Fly.io operations.

Note: At some point, you’ll be prompted for credit card payment information. New accounts start on our Pay As You Go plan. See Pricing and Billing for more details.

Whichever route you take you’ll be signed up, signed in, and returned to your command line, ready to use Fly.io.

Sign in to your Fly.io account

If you already have a Fly.io account, all you need to do is sign in with flyctl. To sign in, run:

fly auth login

When your browser opens to the Fly.io sign-in screen, enter your user name and password to sign in. If you signed up with GitHub, then click Sign in with GitHub to sign in.

After logging in you’ll be returned to your command line, ready to use Fly.io.

Microsoft WSL users may need to run the following command, which creates a symbolic link that allows the browser to open:

ln -s /usr/bin/wslview /usr/local/bin/xdg-open

3. Launch the demo app

Fly Launch helps you quickly deploy almost any kind of app using a Docker image. For this example, you’ll use our pre-built Docker image, flyio/hellofly:latest, to create and deploy the demo app.

Every Fly Launch app uses a fly.toml config file to tell the platform how to deploy it. Running fly launch to create a new app generates the fly.toml file with some useful defaults that you can tweak through a web interface before deploying the app. When you run a command post-deploy, flyctl looks for a fly.toml file to get the app name and configuration.

To create the demo app, run:

fly launch --image flyio/hellofly:latest

You’ll get a summary of the defaults for your app. For example:

Using image flyio/hellofly:latest
Creating app in /Users/username/my-app-name
We're about to launch your app on Fly.io. Here's what you're getting:

Organization: MyName                 (fly launch defaults to the personal org)
Name:         my-app-name            (derived from your directory name)
Region:       Secaucus, NJ (US)      (this is the fastest region for you)
App Machines: shared-cpu-1x, 1GB RAM (most apps need about 1GB of RAM)
Postgres:     <none>                 (not requested)
Redis:        <none>                 (not requested)

? Do you want to tweak these settings before proceeding? (y/N)

Type y at the prompt to open the Fly Launch page, where you can make changes to your app config.

For this example, you’ll probably want to change the app name and maybe the region to deploy in. App names need to be globally unique.

Click Confirm Settings to confirm and deploy the demo app.

Then return to your terminal to view the progress of the app deployment. For example:

Waiting for launch data... Done
Created app 'my-app-name' in organization 'personal'
Admin URL: https://fly.io/apps/my-app-name
Hostname: my-app-name.fly.dev
Wrote config file fly.toml
Validating /Users/username/my-app-dir/fly.toml
Platform: machines
✓ Configuration is valid
==> Building image
Searching for image 'flyio/hellofly:latest' remotely...
image found: img_z1nr0lpjz9v5q98w

Watch your deployment at https://fly.io/apps/my-app-name/monitoring

Provisioning ips for my-app-name
  Dedicated ipv6: 2a09:8280:1::42:a8f4
  Shared ipv4: 66.241.124.213
  Add a dedicated ipv4 with: fly ips allocate-v4

This deployment will:
 * create 2 "app" machines

No machines in group app, launching a new machine
Creating a second machine to increase service availability
Finished launching new machines
-------
NOTE: The machines for [app] have services with 'auto_stop_machines = true' that will be stopped when idling
-------
Visit your newly deployed app at https://my-app-name.fly.dev/

4. Check your app’s status

After the app is deployed, use the fly status command to get the basic details about your new app.

fly status

Example output:

App
  Name     = hellofly          
  Owner    = personal       
  Hostname = hellofly.fly.dev
  Image    = flyio/hellofly:latest

Machines
PROCESS ID              VERSION REGION  STATE   ROLE   CHECKS   LAST UPDATED
app     148e453b7d7289  1       ord     started                 2023-05-17T17:39:37Z
app     5683d311c3228e  1       ord     stopped                 2023-05-17T17:38:44Z

In this example, the app has a DNS hostname of hellofly.fly.dev. The app has two Machines running in the ord (Chicago) region. We recommend running at least two machines to improve availability.

5. Visit your app

You can connect to your deployed app with the fly apps open command, which opens a browser to https://<my-app-name>.fly.dev/ for a secure connection.

You’ve successfully launched your first app on Fly.io!

For fun, add /<your-name> to fly apps open and your name will be appended to the app’s path to add an extra greeting from the hellofly application.

fly apps open /fred
opening https:http://hellofly.fly.dev/fred ...

Deploy changes

You probably don’t need to make any changes to our demo app. But when you do make changes to an app on Fly.io, deploy a new release with:

fly deploy

For more info about how fly deploy works, see Deploy a Fly App.

Grow and scale

Check out some of the ways you can increase availability, capacity, and performance with Fly.io: