wasp/waspc/packages/studio
2024-07-03 13:45:07 +02:00
..
client Bump vite from 4.4.9 to 4.5.3 in /waspc/packages/studio/client (#1936) 2024-04-04 13:06:05 +02:00
public Wasp Studio [experimental] (#1483) 2023-10-10 12:17:05 +02:00
src Wasp Studio [experimental] (#1483) 2023-10-10 12:17:05 +02:00
.gitignore Wasp Studio [experimental] (#1483) 2023-10-10 12:17:05 +02:00
nodemon.json Wasp Studio [experimental] (#1483) 2023-10-10 12:17:05 +02:00
package-lock.json Bump braces from 3.0.2 to 3.0.3 in /waspc/packages/studio (#2147) 2024-07-03 13:45:07 +02:00
package.json Wasp Studio [experimental] (#1483) 2023-10-10 12:17:05 +02:00
README.md Wasp Studio [experimental] (#1483) 2023-10-10 12:17:05 +02:00
tsconfig.json Wasp Studio [experimental] (#1483) 2023-10-10 12:17:05 +02:00

Wasp Studio

Wasp Studio has two components:

  • the server
  • the client

To develop the studio, you need to run both of them. First, run the server, then the client.

Server

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/crud-testing/.wasp/out/.wasp-studio-data.json

Client

Install dependencies:

cd client
npm install

Running the client:

npm run dev

Then open http://localhost:5173 in your browser.