Remix on AWS with SST
Create and deploy a Remix app to AWS with SST.
There are two ways to deploy a Remix app to AWS with SST.
We’ll use both to build a couple of simple apps below.
Examples
We also have a few other Remix examples that you can refer to.
Serverless
We are going to create a Remix app, add an S3 Bucket for file uploads, and deploy it to using the Remix
component.
Before you get started, make sure to configure your AWS credentials.
1. Create a project
Let’s start by creating our project.
We are picking all the default options.
Init SST
Now let’s initialize SST in our app.
Select the defaults and pick AWS. This’ll create a sst.config.ts
file in your project root.
Start dev mode
Run the following to start dev mode. This’ll start SST and your Remix app.
Once complete, click on MyWeb in the sidebar and open your Remix app in your browser.
2. Add an S3 Bucket
Let’s allow public access
to our S3 Bucket for file uploads. Update your sst.config.ts
.
Add this above the Remix
component.
Link the bucket
Now, link the bucket to our Remix app.
3. Create an upload form
Add the upload form client in app/routes/_index.tsx
. Replace the Index
component with:
4. Generate a pre-signed URL
When our app loads, we’ll generate a pre-signed URL for the file upload and use it in the form.
Add this above the Index
component in app/routes/_index.tsx
.
Add the relevant imports.
And install the npm packages.
Head over to the local Remix app in your browser, http://localhost:5173
and try uploading an image. You should see it upload and then download the image.
5. Deploy your app
Now let’s deploy your app to AWS.
You can use any stage name here but it’s good to create a new stage for production.
Congrats! Your site should now be live!
Containers
We are going to create a Remix app, add an S3 Bucket for file uploads, and deploy it in a container with the Cluster
component.
Before you get started, make sure to configure your AWS credentials.
1. Create a project
Let’s start by creating our app.
We are picking all the default options.
Init SST
Now let’s initialize SST in our app.
Select the defaults and pick AWS. This’ll create a sst.config.ts
file in your project root.
2. Add a Service
To deploy our Remix app in a container, we’ll use AWS Fargate with Amazon ECS. Replace the run
function in your sst.config.ts
.
This creates a VPC, and an ECS Cluster with a Fargate service in it.
The dev.command
tells SST to instead run our Remix app locally in dev mode.
Start dev mode
Run the following to start dev mode. This’ll start SST and your Remix app.
Once complete, click on MyService in the sidebar and open your Remix app in your browser.
3. Add an S3 Bucket
Let’s allow public access
to our S3 Bucket for file uploads. Update your sst.config.ts
.
Add this below the Vpc
component.
Link the bucket
Now, link the bucket to the container.
This will allow us to reference the bucket in our Remix app.
4. Create an upload form
Add the upload form client in app/routes/_index.tsx
. Replace the Index
component with:
5. Generate a pre-signed URL
When our app loads, we’ll generate a pre-signed URL for the file upload and use it in the form.
Add this above the Index
component in app/routes/_index.tsx
.
Add the relevant imports.
And install the npm packages.
Head over to the local Remix app in your browser, http://localhost:5173
and try uploading an image. You should see it upload and then download the image.
6. Deploy your app
To deploy our app we’ll add a Dockerfile
.
This builds our Remix app in a Docker image.
Let’s also add a .dockerignore
file in the root.
Now to build our Docker image and deploy we run:
You can use any stage name here but it’s good to create a new stage for production.
Congrats! Your app should now be live!
Connect the console
As a next step, you can setup the SST Console to git push to deploy your app and view logs from it.
You can create a free account and connect it to your AWS account.