Wasp CLI
Wasp CLI can deploy your full-stack application with only a single command. The command automates the manual deployment process and is the recommended way of deploying Wasp apps.
Supported Providersβ
Wasp supports automated deployment to the following providers:
Fly.ioβ
Prerequisitesβ
Fly requires you to add your credit card information before you can deploy your apps. If you don't, the deployment will fail. Prices are usage based and can be estimated here.
You can add the required credit card information on the account's billing page.
You will need the fly
CLI installed on your machine before you can deploy to Fly.io.
Deployingβ
Using the Wasp CLI, you can easily deploy a new app to Fly.io with just a single command:
wasp deploy fly launch my-wasp-app mia
Please do not CTRL-C or exit your terminal while the commands are running.
Two things to keep in mind:
-
Your app name (for example
my-wasp-app
) must be unique across all of Fly or deployment will fail. -
If your account is a member of more than one organization on Fly.io, you will need to specify under which one you want to execute the command. To do that, provide an additional
--org <org-slug>
option. You can find out the names (slugs) of your organizations by runningfly orgs list
.
The launch
command uses the app basename my-wasp-app
and deploy it to the mia
region (mia
is short for Miami, Florida (US)). Read more about Fly.io regions here.
The basename is used to create all three app tiers, resulting in three separate apps in your Fly dashboard:
my-wasp-app-client
my-wasp-app-server
my-wasp-app-db
You'll notice that Wasp creates two new files in your project root directory:
fly-server.toml
fly-client.toml
You should include these files in your version control so that you can deploy your app with a single command in the future.
When you run the launch
command, Wasp CLI knows how to connect different parts of your Wasp app together, so it sets up the required environment variables for your server app:
WASP_WEB_CLIENT_URL
andWASP_SERVER_URL
which are required to connect your client and server apps.DATABASE_URL
which is required to connect your server app to the database.JWT_SECRET
which is required for authentication to work.
If your app requires any additional environment variables, use the wasp deploy fly cmd secrets set
command. Read more in the API Reference section.
Using a Custom Domain For Your Appβ
Setting up a custom domain is a three-step process:
- You need to add your domain to your Fly client app. You can do this by running:
wasp deploy fly cmd --context client certs create mycoolapp.com
Make sure to replace mycoolapp.com
with your domain in all of the commands mentioned in this section.
This command will output the instructions to add the DNS records to your domain. It will look something like this:
You can direct traffic to mycoolapp.com by:
1: Adding an A record to your DNS service which reads
A @ 66.241.1XX.154
You can validate your ownership of mycoolapp.com by:
2: Adding an AAAA record to your DNS service which reads:
AAAA @ 2a09:82XX:1::1:ff40
-
You need to add the DNS records for your domain:
This will depend on your domain provider, but it should be a matter of adding an A record for
@
and an AAAA record for@
with the values provided by the previous command. -
You need to set your domain as the
WASP_WEB_CLIENT_URL
environment variable for your server app:
wasp deploy fly cmd --context server secrets set WASP_WEB_CLIENT_URL=https://mycoolapp.com
We need to do this to keep our CORS configuration up to date.
That's it, your app should be available at https://mycoolapp.com
!
Adding a www
Subdomainβ
If you'd also like to access your app at https://www.mycoolapp.com
, you can generate certificates for the www
subdomain.
wasp deploy fly cmd --context client certs create www.mycoolapp.com
Once you do that, you will need to add another DNS record for your domain. It should be a CNAME record for www
with the value of your root domain.
Here's an example:
Type | Name | Value | TTL |
---|---|---|---|
CNAME | www | mycoolapp.com | 3600 |
With the CNAME record (Canonical name), you are assigning the www
subdomain as an alias to the root domain.
Your app should now be available both at the root domain https://mycoolapp.com
and the www
sub-domain https://www.mycoolapp.com
.
Using the www
and non-www
domains at the same time will require you to update your CORS configuration to allow both domains. You'll need to provide custom CORS configuration in your server app to allow requests from both domains.
Railwayβ
Prerequisitesβ
To deploy to Railway using Wasp CLI:
-
Create a Railway account,
-
Wasp CLI requires that Railpack is set as the default deployment builder for client routing to work correctly. Go to your Railway account settings and enable "Default to Railpack".
-
Install the
railway
CLI on your machine.
Deployingβ
Using the Wasp CLI, you can easily deploy a new app to Railway with a single command:
wasp deploy railway launch my-wasp-app
Please do not CTRL-C or exit your terminal while the commands are running.
Keep in mind that:
-
Your project name (for example
my-wasp-app
) must be unique across all your Railway projects or deployment will fail (his is a current limitation of the Wasp CLI and Railway integration #2926). -
If you are a member of multiple Railway organizations, the CLI will prompt you to select the organization under which you want to deploy your app.
The project name is used as a base for your server and client service names on Railway:
my-wasp-app-client
my-wasp-app-server
Railway doesn't allow setting the database service name using the Railway CLI. It will always be named Postgres
.
When you run the launch
command, Wasp CLI knows how to connect different parts of your Wasp app together, so it sets up the required environment variables for your server app:
WASP_WEB_CLIENT_URL
andWASP_SERVER_URL
which are required to connect your client and server apps.DATABASE_URL
which is required to connect your server app to the database.JWT_SECRET
which is required for authentication to work.
If you have any additional environment variables that your app needs, read how to set them in the API Reference section.
Using a Custom Domain For Your Appβ
Setting up a custom domain is a three-step process:
-
Add your domain to the Railway client service:
- Go into the Railway dashboard.
- Select your project (for example
my-wasp-app
). - Click on the client service (for example
my-wasp-app-client
). - Go to the Settings tab and click Custom Domain.
- Enter your domain name (for example
mycoolapp.com
) and port8080
. - Click Add Domain.
-
Update the DNS records for your domain, adding a CNAME record at the domain or subdomain you want, pointing to the address you've been given in the previous step. This step depends on your domain provider, consult their documention in case of doubt.
-
To avoid CORS errors, you need to set your new client URL as the
WASP_WEB_CLIENT_URL
environment variable (for examplehttps://mycoolapp.com
) for your server service in the Railway dashboard.- Go into the Railway dashboard.
- Select your project (for example
my-wasp-app
). - Click on the server service (for example
my-wasp-app-server
). - Go to the Variables tab.
Update the
WASP_WEB_CLIENT_URL
variable with the new domain for your client.
That's it, your app should be available at https://mycoolapp.com
!
API Referenceβ
Fly.io CLI Commandsβ
The launch
commandβ
launch
is a convenience command that runs setup
, create-db
, and deploy
in sequence.
wasp deploy fly launch <app-name> <region>
It accepts the following arguments:
-
<app-name>
requiredThe name of your app.
-
<region>
requiredThe region where your app will be deployed. Read how to find the available regions here.
Running wasp deploy fly launch
is same as running the following commands:
wasp deploy fly setup <app-name> <region>
wasp deploy fly create-db <region>
wasp deploy fly deploy
Environment Variablesβ
Serverβ
If you are deploying an app that requires any other environment variables (like social auth secrets), you can set them with the --server-secret
option:
wasp deploy fly launch my-wasp-app mia --server-secret GOOGLE_CLIENT_ID=<...> --server-secret GOOGLE_CLIENT_SECRET=<...>
Clientβ
If you've added any client-side environment variables to your app, pass them to the terminal session before running the launch
command, for example:
REACT_APP_ANOTHER_VAR=somevalue wasp deploy fly launch my-wasp-app mia
The setup
commandβ
The setup
command registers your client and server apps on Fly, and sets up needed environment variables.
It only needs to be run once, when initially creating the app. It does not trigger a deploy for the client or server apps.
wasp deploy fly setup <app-name> <region>
It accepts the following arguments:
-
<app-name>
requiredThe name of your app.
-
<region>
requiredThe region where your app will be deployed. Read how to find the available regions here.
After running setup
, Wasp creates two new files in your project root directory: fly-server.toml
and fly-client.toml
.
You should include these files in your version control.
You can edit the fly-server.toml
and fly-client.toml
files to further configure your Fly deployments. Wasp will use the TOML files when you run deploy
.
If you want to maintain multiple apps, you can add the --fly-toml-dir <abs-path>
option to point to different directories, like "dev" or "staging".
You should only run setup
once per app. If you run it multiple times, it creates unnecessary apps on Fly.
The create-db
commandβ
The create-db
command creates a new database for your app.
wasp deploy fly create-db <region>
It accepts the following arguments:
-
<region>
requiredThe region where your app will be deployed. Read how to find the available regions here.
You should only run create-db
once per app. If you run it multiple times, it creates multiple databases, but your app needs only one.
The deploy
commandβ
wasp deploy fly deploy
The deploy
command pushes your built client and server live.
Run this command whenever you want to update your deployed app with the latest changes:
wasp deploy fly deploy
If you've added any client-side environment variables to your app, pass them to the terminal session before running the deploy
command, for example:
REACT_APP_ANOTHER_VAR=somevalue wasp deploy fly deploy
You must specify your client-side environment variables every time you redeploy with the above command to ensure they are included in the build process.
The cmd
commandβ
If you want to run arbitrary Fly commands (for example fly secrets list
for your server app), here's how to do it:
wasp deploy fly cmd secrets list --context server
Environment Variablesβ
Server Secretsβ
If your app requires any other server-side environment variables (like social auth secrets), you can set them:
-
Initially in the
launch
orsetup
commands with the--server-secret
option -
After the app has already been deployed by using the
secrets set
command:wasp deploy fly cmd secrets set GOOGLE_CLIENT_ID=<...> GOOGLE_CLIENT_SECRET=<...> --context=server
Client Environment Variablesβ
If you've added any client-side environment variables to your app, pass them to the terminal session before running a deployment command, for example:
REACT_APP_ANOTHER_VAR=somevalue wasp deploy fly launch my-wasp-app mia
or
REACT_APP_ANOTHER_VAR=somevalue wasp deploy fly deploy
Please note that you should do this for every deployment, not just the first time you set up the variables. One way to make sure you don't forget to add them is to create a deploy
script in your package.json
file:
{
"scripts": {
"deploy": "REACT_APP_ANOTHER_VAR=somevalue wasp deploy fly deploy"
}
}
Then you can run npm run deploy
to deploy your app.
Fly.io Regionsβ
Fly.io runs applications physically close to users: in datacenters around the world, on servers we run ourselves. You can currently deploy your apps in 34 regions, connected to a global Anycast network that makes sure your users hit our nearest server, whether theyβre in Tokyo, SΓ£o Paolo, or Frankfurt.
Read more on Fly regions here.
You can find the list of all available Fly regions by running:
fly platform regions
Multiple Fly.io Organizationsβ
If you have multiple organizations, you can specify a --org
option. For example:
wasp deploy fly launch my-wasp-app mia --org hive
Building Locallyβ
Fly.io offers support for both locally built Docker containers and remotely built ones. However, for simplicity and reproducibility, the CLI defaults to the use of a remote Fly.io builder.
If you want to build locally, supply the --build-locally
option to wasp deploy fly launch
or wasp deploy fly deploy
.
Railway CLI Commandsβ
The launch
commandβ
launch
is a convenience command that runs setup
and deploy
in sequence.
wasp deploy railway launch <project-name>
It accepts the following arguments:
-
<project-name>
requiredThe name of your project.
Running wasp deploy railway launch
is same as running the following commands:
wasp deploy railway setup <project-name>
wasp deploy railway deploy <project-name>
Explicitly providing the Railway project IDβ
By default, Wasp CLI tries to create a new Railway project named <project-name>
. If you want to use an existing Railway project, pass its ID with --existing-project-id
option:
wasp deploy railway launch <project-name> --existing-project-id <railway-project-id>
Environment Variablesβ
Serverβ
If you are deploying an app that requires any other environment variables (like social auth secrets), you can set them with the --server-secret
option:
wasp deploy railway launch my-wasp-app --server-secret GOOGLE_CLIENT_ID=<...> --server-secret GOOGLE_CLIENT_SECRET=<...>
Clientβ
If you've added any client-side environment variables to your app, pass them to the terminal session before running the launch
command, for example:
REACT_APP_ANOTHER_VAR=somevalue wasp deploy railway launch my-wasp-app
The deploy
commandβ
The deploy
command deploys your client and server apps to Railway.
wasp deploy railway deploy <project-name>
It accepts the following arguments:
-
<project-name>
requiredThe name of your project.
Run this command whenever you want to update your deployed app with the latest changes:
wasp deploy railway deploy <project-name>
Explicitly providing the Railway project IDβ
When you run the deploy
command, Wasp CLI will use the Railway project that's linked to the Wasp project directory. If no Railway project is linked, the command will fail asking you to run the setup
command first.
If you are deploying your Railway app in the CI, you can pass the --existing-project-id
option to tell Wasp CLI the Railway project ID to use for the deployment:
wasp deploy railway deploy <project-name> --existing-project-id <railway-project-id>
Other Available Optionsβ
--skip-client
- do not deploy the web client--skip-server
- do not deploy the server
If you've added any client-side environment variables to your app, pass them to the terminal session before running the deploy
command, for example:
REACT_APP_ANOTHER_VAR=somevalue wasp deploy railway deploy <project-name>
You must specify your client-side environment variables every time you redeploy with the above command to ensure they are included in the build process.
The setup
commandβ
The setup
command creates your client, server, and database services on Railway. It also configures environment variables. It does not deploy the client or server services.
wasp deploy railway setup <project-name>
It accepts the following arguments:
-
<project-name>
the name of your project.
The project name is used as a base for your server and client service names on Railway:
<project-name>-client
<project-name>-server
Railway also creates a PostgreSQL database service named Postgres
.
Explicitly providing the Railway project IDβ
By default, Wasp CLI tries to create a new Railway project named <project-name>
. If you want to use an existing Railway project, pass its ID with --existing-project-id
option:
wasp deploy railway setup <project-name> --existing-project-id <railway-project-id>
You should only run setup
once per app. Wasp CLI skips creating the services if they already exist.
Environment Variablesβ
Server Secretsβ
If your app requires any other server-side environment variables (like social auth secrets), you can set them:
- Initially in the
launch
orsetup
commands with the--server-secret
option - After the app has already been deployed go into the Railway dashboard and set them in the Variables tab of your server service.
Client Environment Variablesβ
If you've added any client-side environment variables to your app, pass them to the terminal session before running a deployment command, for example:
REACT_APP_ANOTHER_VAR=somevalue wasp deploy railway launch my-wasp-app
or
REACT_APP_ANOTHER_VAR=somevalue wasp deploy railway deploy
Please note that you should do this for every deployment, not just the first time you set up the variables. One way to make sure you don't forget to add them is to create a deploy
script in your package.json
file:
{
"scripts": {
"deploy": "REACT_APP_ANOTHER_VAR=somevalue wasp deploy railway deploy"
}
}
Then you can run npm run deploy
to deploy your app.