This is a Wasp template configured for developer environments on Github Codespaces.
- Look for the
main.wasp
file 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 to go through our TODO app tutorial.
Click on "Use this template" and then "Open in a codepsace" to get started with your own project.
When the Codespace is ready, you can start the development server by running:
wasp start
To get started with Wasp on Github Codespaces, add the .devcontainer
folder which contains the configuration for Github Codespaces. 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