Skip to main content
Version: 8.1

Using GitPod

What is GitPod?

GitPod is a cloud development environment with all the necessary tools and dependencies, allowing you to focus on building your RedwoodJS application without worrying about the setup. Get started quickly and efficiently by launching RedwoodJS inside GitPod!

Getting Started

Click on the Open in GitPod button:

Open in GitPod

This will launch GitPod and ask you to configure a new workspace. Click continue.

GitPod Onboarding Screen

GitPod will then begin to build your workspace. This may take several minutes.

What's going on behind the scenes:

Once everything is up and running, you can click on the Ports tab:

GitPod Ports Tab

You can click on the address or the globe icon to open that particular port in a new tab.

  • Port 5432 is the database. So, if you click on that port, you'll probably see a "Port 5432 Not Found" error, but it is working! GitPod on Port 5432

  • Port 8910 is your frontend Port 8910 frontend

  • Port 8911 is your backend and will show you a list of all available functions. If you add /graphql to the end of the URL, you should see the GraphQL Playground Port 8911 GraphQL Playground

How to Use GitPod

If you have an existing project, you can still use GitPod:

  1. Take any repository within GitHub and append gitpod.io/# to the URL. This will quickly launch a GitPod workspace.
  2. Within the Terminal, run yarn install to install all the dependencies