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
Copy file name to clipboardExpand all lines: examples/openai/readme.md
+14-1Lines changed: 14 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,13 @@ nvm use 20
9
9
10
10
brew install pnpm
11
11
12
+
# Install Restack Web UI
13
+
14
+
To install the Restack Web UI, you can use Docker.
15
+
```
16
+
docker run -d --pull always --name studio -p 5233:5233 -p 6233:6233 -p 7233:7233 ghcr.io/restackio/restack:main
17
+
```
18
+
12
19
# Start pods
13
20
14
21
Where all your code is defined, including workflow steps.
@@ -44,6 +51,12 @@ flowchart TD
44
51
P2 -->|sends status output | E
45
52
```
46
53
47
-
# Deploy
54
+
##Deploy on Restack
48
55
49
56
pnpm restack-up
57
+
58
+
To deploy the application on Restack, you can use the provided `restack_up.mjs` script. This script utilizes the Restack Cloud SDK to define and deploy your application stack. It sets up the necessary environment variables and configures the application for deployment.
59
+
60
+
To get started, ensure you have the required Restack Cloud credentials and environment variables set up. Then, run the script to initiate the deployment process.
61
+
62
+
For more detailed information on deploying your repository to Restack, refer to the [Restack Cloud deployment documentation](https://docs.restack.io/restack-cloud/deployrepo).
Copy file name to clipboardExpand all lines: examples/posthog/readme.md
+14-1Lines changed: 14 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,13 @@ And OpenAI O1-preview to reason and create a digest in Markdown.
7
7
8
8
By default we retrieve all recodings from last 24 hours, so by scheduling the workflow to run every day we get a digest of all new recordings.
9
9
10
+
# Install Restack Web UI
11
+
12
+
To install the Restack Web UI, you can use Docker.
13
+
```
14
+
docker run -d --pull always --name studio -p 5233:5233 -p 6233:6233 -p 7233:7233 ghcr.io/restackio/restack:main
15
+
```
16
+
10
17
# Install dependencies
11
18
12
19
pnpm i
@@ -23,6 +30,12 @@ pnpm dev
23
30
24
31
pnpm schedule
25
32
26
-
#deploy
33
+
## Deploy on Restack
27
34
28
35
pnpm restack-up
36
+
37
+
To deploy the application on Restack, you can use the provided `restack_up.mjs` script. This script utilizes the Restack Cloud SDK to define and deploy your application stack. It sets up the necessary environment variables and configures the application for deployment.
38
+
39
+
To get started, ensure you have the required Restack Cloud credentials and environment variables set up. Then, run the script to initiate the deployment process.
40
+
41
+
For more detailed information on deploying your repository to Restack, refer to the [Restack Cloud deployment documentation](https://docs.restack.io/restack-cloud/deployrepo).
0 commit comments