Skip to content

Commit d956559

Browse files
committed
docs: Add a minimal README to Wave Studio.
1 parent 4a7237b commit d956559

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

studio/README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Wave Studio
2+
3+
In-browser IDE for building Wave apps. No local environment setup needed.
4+
5+
## Building for H2O Appstore
6+
7+
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.
8+
9+
The steps below work on Linux/MacOS. For MacOS one needs to run `brew install gsed` if hasn't done already.
10+
11+
Clone the repo first.
12+
13+
```sh
14+
git clone https://github.com/h2oai/wave
15+
```
16+
17+
Then update the [requirements.txt](https://github.com/h2oai/wave/blob/main/studio/requirements.txt) file with your desired dependencies.
18+
19+
Once done, make a new build
20+
21+
```sh
22+
cd studio
23+
make setup
24+
VERSION=1.2.3 make build
25+
```
26+
27+
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 commit comments

Comments
 (0)