waspc/data/packages/studio/README.md
Wasp Studio has two components:
To develop the studio, you need to run both of them. First, run the server, then the client.
Install dependencies:
npm install
Running the server for some data file:
npm run dev -- -d <path_to_data_file>
For example, running the server with the data file from the examples directory:
npm run dev -- -d ../../examples/todoApp/.wasp/out/.wasp-studio-data.json
Wasp CLI generates the .wasp-studio-data.json file when the wasp studio command is run.
You can run the wasp studio once to get the file generated, and then run the studio in development mode.
Install dependencies:
cd client
npm install
Running the client:
npm run dev
Then open http://localhost:5173 in your browser.