Skip to content

Starter Repo for working with Browser IDEs, like GitPod

Notifications You must be signed in to change notification settings

redwoodjs/starter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Open in Gitpod

RedwoodJS GitPod Starter

This repository enables you to easily launch RedwoodJS projects inside GitPod. RedwoodJS is a full-stack JavaScript framework that combines React, GraphQL, Prisma, Jest, and Storybook to build modern web applications. With this starter, setting up a RedwoodJS development environment in GitPod becomes a straightforward process. It provides a preconfigured 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 New Workspace

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, Port 5432
  • Port 8910 is your frontend GitPod, Port 8910
  • 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 GraphQL Playground on GitPod

The Starting Files, within this Repository

.gitpod.yml

This contains the bulk of the GitPod setup. We're using the gitpod/workspace-postgres image.

Then, we're running a couple of tasks to initialize the workspace:

Create Redwood app, using feature flags to specify preferences.

yarn create redwood-app . --overwrite --yarn-install --typescript --git-init=false

Then, we're running the script inside gitpod-setup.js.

We've specified several ports:

  • 5432 for Postgres
  • 8910 for the frontend
  • 8911 for the backend

Lastly, we've listed 8 recommended VS Code extensions to install.

.gitpod.env

This file lists initializes the environment variables for the workspace.

DATABASE_URL=""
TEST_DATABASE_URL=""
PRISMA_HIDE_UPDATE_MESSAGE=""

About

Starter Repo for working with Browser IDEs, like GitPod

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published