This is a Wasp template configured for ephemeral developer environments on Gitpod.
Inside this template is a simple ToDo app complete with Authentication, Database Entities, and Client & Server Operations.
- Look for the
main.wasp
file within theMyNewApp
directory to see how a Wasp App is built! - The
src
directory contains your client and server files that you edit and reference withinmain.wasp
- Wasp uses this information to put all the pieces of your app together, so you can focus on the important stuff (you can see what Wasp builds in
.wasp/out
, but don't edit these files 🐝)!
Visit wasp-lang.dev for more info.
After clicking the button above, you'll be taken to a new workspace.
- Login with GitHub
- Wait for the Docker image to build
- Wait for the Wasp CLI to install and start the development environment
- A preview of your app will open in a new tab within the IDE
Click the above "Open in Gitpod" button to start a new workspace. Once you're ready to push your first code changes, Gitpod will guide you to fork this project so you own it.
To get started with Wasp on Gitpod, add a .gitpod.yml
file which contains the configuration to improve the developer experience on Gitpod. To learn more, please see the Getting Started documentation.
wasp start
starts development environmentwasp db migrate-dev
to run database migrationswasp db studio
to open Prisma Studio and view your database models