Skip to content

Commit

Permalink
docs: Add a minimal README to Wave Studio.
Browse files Browse the repository at this point in the history
  • Loading branch information
mturoci committed Nov 15, 2023
1 parent 4a7237b commit d956559
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions studio/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Wave Studio

In-browser IDE for building Wave apps. No local environment setup needed.

## Building for H2O Appstore

A common ask for this app is to install arbitrary python dependencies. Even though there is no such native feature [yet](https://github.com/h2oai/wave/issues/2193), it's possible to achieve via custom build.

The steps below work on Linux/MacOS. For MacOS one needs to run `brew install gsed` if hasn't done already.

Clone the repo first.

```sh
git clone https://github.com/h2oai/wave
```

Then update the [requirements.txt](https://github.com/h2oai/wave/blob/main/studio/requirements.txt) file with your desired dependencies.

Once done, make a new build

```sh
cd studio
make setup
VERSION=1.2.3 make build
```

If there were no errors, your `.wave` bundle should be located at `build/apps/wave-studio`. Once complete, you are ready to deploy the bundle into Appstore and start coding!

0 comments on commit d956559

Please sign in to comment.