You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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