mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-26 02:23:21 +03:00
.. | ||
client | ||
public | ||
src | ||
.gitignore | ||
nodemon.json | ||
package-lock.json | ||
package.json | ||
README.md | ||
tsconfig.json |
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.