Skip to content

Commit 1b94e39

Browse files
authored
Merge pull request #57 from restackio/examples-move-to-root
2 parents 99518c2 + 0bd3ad3 commit 1b94e39

File tree

387 files changed

+71
-67
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

387 files changed

+71
-67
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

examples/child-workflows/readme.md child-workflows/readme.md

+2-2

examples/child-workflows/restack_up.mjs child-workflows/restack_up.mjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ const main = async () => {
1717

1818
const servicesApp = {
1919
name: "services",
20-
dockerFilePath: "examples/child-workflows/Dockerfile",
21-
dockerBuildContext: "examples/child-workflows",
20+
dockerFilePath: "child-workflows/Dockerfile",
21+
dockerBuildContext: "child-workflows",
2222
environmentVariables: [
2323
...restackEngineEnvs,
2424
{
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

examples/composio/readme.md composio/readme.md

+1-1

examples/composio/restack_up.mjs composio/restack_up.mjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ const main = async () => {
2121

2222
const servicesApp = {
2323
name: "services",
24-
dockerFilePath: "examples/composio/Dockerfile",
25-
dockerBuildContext: "examples/composio",
24+
dockerFilePath: "composio/Dockerfile",
25+
dockerBuildContext: "composio",
2626
environmentVariables: [
2727
{
2828
name: "COMPOSIO_API_KEY",
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

examples/defense_quickstart_news_scraper_summarizer/README.md defense_quickstart_news_scraper_summarizer/README.md

+1-1

examples/defense_quickstart_news_scraper_summarizer/restack_up.js defense_quickstart_news_scraper_summarizer/restack_up.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ const main = async () => {
5353
const frontend = {
5454
name: 'frontend',
5555
dockerFilePath:
56-
'examples/defense_quickstart_news_scraper_summarizer/frontend/Dockerfile',
56+
'defense_quickstart_news_scraper_summarizer/frontend/Dockerfile',
5757
dockerBuildContext:
58-
'examples/defense_quickstart_news_scraper_summarizer/frontend',
58+
'defense_quickstart_news_scraper_summarizer/frontend',
5959
environmentVariables: [...restackEngineEnvs],
6060
portMapping: [
6161
{
@@ -69,9 +69,9 @@ const main = async () => {
6969
const backend = {
7070
name: 'backend',
7171
dockerFilePath:
72-
'examples/defense_quickstart_news_scraper_summarizer/backend/Dockerfile',
72+
'defense_quickstart_news_scraper_summarizer/backend/Dockerfile',
7373
dockerBuildContext:
74-
'examples/defense_quickstart_news_scraper_summarizer/backend',
74+
'defense_quickstart_news_scraper_summarizer/backend',
7575
environmentVariables: [
7676
...restackEngineEnvs,
7777
{
File renamed without changes.
File renamed without changes.
File renamed without changes.

examples/openai/readme.md encryption/readme.md

+1-1
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

examples/voice/src/.DS_Store

-6 KB
Binary file not shown.

examples/voice/tsconfig.tsbuildinfo

-1
This file was deleted.

examples/express-together-llamaindex/readme.md express-together-llamaindex/readme.md

+1-1

examples/express-together-llamaindex/restack_up.mjs express-together-llamaindex/restack_up.mjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ const main = async () => {
2121

2222
const expressServer = {
2323
name: "express",
24-
dockerFilePath: "examples/express/Dockerfile",
25-
dockerBuildContext: "examples/express",
24+
dockerFilePath: "express/Dockerfile",
25+
dockerBuildContext: "express",
2626
environmentVariables: [...restackEngineEnvs],
2727
};
2828

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

examples/express/readme.md express/readme.md

+1-1

examples/swagger/restack_up.mjs express/restack_up.mjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ const main = async () => {
2121

2222
const expressServer = {
2323
name: "express",
24-
dockerFilePath: "examples/express/Dockerfile",
25-
dockerBuildContext: "examples/express",
24+
dockerFilePath: "express/Dockerfile",
25+
dockerBuildContext: "express",
2626
environmentVariables: [...restackEngineEnvs],
2727
};
2828

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

examples/get-started/package.json get-started/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"build": "tsc --build",
88
"schedule-workflow": "tsx scheduleWorkflow.ts",
99
"restack-up": "tsx restackUp.ts",
10-
"restack-studio": "docker run -d --pull always --name studio -p 5233:5233 -p 6233:6233 -p 7233:7233 ghcr.io/restackio/restack:main"
10+
"restack-studio": "docker run -d --pull always --name restack -p 5233:5233 -p 6233:6233 -p 7233:7233 ghcr.io/restackio/restack:main"
1111
},
1212
"dependencies": {
1313
"@restackio/ai": "0.0.85",
File renamed without changes.

examples/get-started/readme.md get-started/readme.md

+1-1

examples/get-started/restackUp.ts get-started/restackUp.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ const main = async () => {
2222

2323
const servicesApp = {
2424
name: "services",
25-
dockerFilePath: "examples/get-started/Dockerfile",
26-
dockerBuildContext: "examples/get-started",
25+
dockerFilePath: "get-started/Dockerfile",
26+
dockerBuildContext: "get-started",
2727
environmentVariables: [
2828
{
2929
name: "OPENAI_API_KEY",
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

examples/google-gemini/readme.md google-gemini/readme.md

+1-1

examples/google-gemini/restack_up.mjs google-gemini/restack_up.mjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ const main = async () => {
2121

2222
const servicesApp = {
2323
name: "services",
24-
dockerFilePath: "examples/gemini/Dockerfile",
25-
dockerBuildContext: "examples/gemini",
24+
dockerFilePath: "gemini/Dockerfile",
25+
dockerBuildContext: "gemini",
2626
environmentVariables: [
2727
{
2828
name: "GEMINI_API_KEY",
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

examples/gotohuman/readme.md gotohuman/readme.md

+1-1
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

examples/human-loop/readme.md human-loop/readme.md

+1-1
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

examples/nextjs-together-llamaindex/README.md nextjs-together-llamaindex/README.md

+1-1

examples/express/restack_up.mjs nextjs-together-llamaindex/backend/restack_up.mjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ const main = async () => {
2121

2222
const expressServer = {
2323
name: "express",
24-
dockerFilePath: "examples/express/Dockerfile",
25-
dockerBuildContext: "examples/express",
24+
dockerFilePath: "express/Dockerfile",
25+
dockerBuildContext: "express",
2626
environmentVariables: [...restackEngineEnvs],
2727
};
2828

examples/nextjs-together-llamaindex/restack_up.mjs nextjs-together-llamaindex/restack_up.mjs

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ const main = async () => {
2121

2222
const frontendNextJs = {
2323
name: "nextjs",
24-
dockerFilePath: "examples/nextjs-together-llamaindex/frontend/Dockerfile",
25-
dockerBuildContext: "examples/nextjs-together-llamaindex/frontend",
24+
dockerFilePath: "nextjs-together-llamaindex/frontend/Dockerfile",
25+
dockerBuildContext: "nextjs-together-llamaindex/frontend",
2626
environmentVariables: [...restackEngineEnvs],
2727
};
2828

2929
const backendNodeJs = {
3030
name: "backend",
31-
dockerFilePath: "examples/nextjs-together-llamaindex/backend/Dockerfile",
32-
dockerBuildContext: "examples/nextjs-together-llamaindex/backend",
31+
dockerFilePath: "nextjs-together-llamaindex/backend/Dockerfile",
32+
dockerBuildContext: "nextjs-together-llamaindex/backend",
3333
environmentVariables: [
3434
...restackEngineEnvs,
3535
{
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

examples/nextjs/README.md nextjs/README.md

+1-1
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

examples/nextjs/restack_up.mjs nextjs/restack_up.mjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ const main = async () => {
2121

2222
const nextjsApp = {
2323
name: "nextjs",
24-
dockerFilePath: "examples/nextjs/Dockerfile",
25-
dockerBuildContext: "examples/nextjs",
24+
dockerFilePath: "nextjs/Dockerfile",
25+
dockerBuildContext: "nextjs",
2626
environmentVariables: [...restackEngineEnvs],
2727
};
2828

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

examples/encryption/readme.md openai/readme.md

+1-1

0 commit comments

Comments
 (0)