-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Releasing v12 : Merging development to main Features : - Added support for user defined HTTP callback event triggers as webhooks. - Added support for self-hosting SuperAGI with one-click docker deployment to Digital Ocean - Added Tool Console and Knowledge Console - Added menu options to publish Agent Template to Marketplace. Tools: - GitHub Fetch PR Tool - GitHub Review PR Tool
- Loading branch information
1 parent
701c91f
commit 6ea5b8c
Showing
76 changed files
with
2,735 additions
and
390 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
alerts: | ||
- rule: DEPLOYMENT_FAILED | ||
- rule: DOMAIN_FAILED | ||
databases: | ||
- engine: PG | ||
name: super-agi-main | ||
num_nodes: 1 | ||
size: basic-xs | ||
version: "12" | ||
ingress: | ||
rules: | ||
- component: | ||
name: superagi-backend | ||
match: | ||
path: | ||
prefix: /api | ||
name: superagi | ||
services: | ||
- dockerfile_path: DockerfileRedis | ||
github: | ||
branch: main | ||
deploy_on_push: true | ||
repo: TransformerOptimus/SuperAGI | ||
internal_ports: | ||
- 6379 | ||
instance_count: 1 | ||
instance_size_slug: basic-xs | ||
source_dir: / | ||
name: superagi-redis | ||
- dockerfile_path: Dockerfile | ||
envs: | ||
- key: REDIS_URL | ||
scope: RUN_TIME | ||
value: superagi-redis:6379 | ||
- key: DB_URL | ||
scope: RUN_TIME | ||
value: ${super-agi-main.DATABASE_URL} | ||
github: | ||
branch: main | ||
deploy_on_push: true | ||
repo: TransformerOptimus/SuperAGI | ||
http_port: 8001 | ||
instance_count: 1 | ||
instance_size_slug: basic-xs | ||
run_command: /app/entrypoint.sh | ||
source_dir: / | ||
name: superagi-backend | ||
- dockerfile_path: ./gui/DockerfileProd | ||
github: | ||
branch: main | ||
deploy_on_push: true | ||
repo: TransformerOptimus/SuperAGI | ||
http_port: 3000 | ||
instance_count: 1 | ||
instance_size_slug: basic-xs | ||
source_dir: ./gui | ||
name: superagi-gui | ||
workers: | ||
- dockerfile_path: Dockerfile | ||
envs: | ||
- key: REDIS_URL | ||
scope: RUN_TIME | ||
value: superagi-redis:6379 | ||
- key: DB_URL | ||
scope: RUN_TIME | ||
value: ${super-agi-main.DATABASE_URL} | ||
github: | ||
branch: main | ||
deploy_on_push: true | ||
repo: TransformerOptimus/SuperAGI | ||
instance_count: 1 | ||
instance_size_slug: basic-xs | ||
run_command: celery -A superagi.worker worker --beat --loglevel=info | ||
source_dir: / | ||
name: superagi-celery | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
spec: | ||
alerts: | ||
- rule: DEPLOYMENT_FAILED | ||
- rule: DOMAIN_FAILED | ||
databases: | ||
- engine: PG | ||
name: super-agi-main | ||
num_nodes: 1 | ||
size: basic-xs | ||
version: "12" | ||
ingress: | ||
rules: | ||
- component: | ||
name: superagi-backend | ||
match: | ||
path: | ||
prefix: /api | ||
name: superagi | ||
services: | ||
- dockerfile_path: DockerfileRedis | ||
git: | ||
branch: main | ||
repo_clone_url: https://github.com/TransformerOptimus/SuperAGI.git | ||
internal_ports: | ||
- 6379 | ||
instance_count: 1 | ||
instance_size_slug: basic-xs | ||
source_dir: / | ||
name: superagi-redis | ||
- dockerfile_path: Dockerfile | ||
envs: | ||
- key: REDIS_URL | ||
scope: RUN_TIME | ||
value: superagi-redis:6379 | ||
- key: DB_URL | ||
scope: RUN_TIME | ||
value: ${super-agi-main.DATABASE_URL} | ||
git: | ||
branch: main | ||
repo_clone_url: https://github.com/TransformerOptimus/SuperAGI.git | ||
http_port: 8001 | ||
instance_count: 1 | ||
instance_size_slug: basic-xs | ||
run_command: /app/entrypoint.sh | ||
source_dir: / | ||
name: superagi-backend | ||
- dockerfile_path: ./gui/DockerfileProd | ||
git: | ||
branch: main | ||
repo_clone_url: https://github.com/TransformerOptimus/SuperAGI.git | ||
http_port: 3000 | ||
instance_count: 1 | ||
instance_size_slug: basic-xs | ||
source_dir: ./gui | ||
name: superagi-gui | ||
workers: | ||
- dockerfile_path: Dockerfile | ||
envs: | ||
- key: REDIS_URL | ||
scope: RUN_TIME | ||
value: superagi-redis:6379 | ||
- key: DB_URL | ||
scope: RUN_TIME | ||
value: ${super-agi-main.DATABASE_URL} | ||
git: | ||
branch: main | ||
repo_clone_url: https://github.com/TransformerOptimus/SuperAGI.git | ||
instance_count: 1 | ||
instance_size_slug: basic-xs | ||
run_command: celery -A superagi.worker worker --beat --loglevel=info | ||
source_dir: / | ||
name: superagi-celery | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
FROM redis/redis-stack-server:latest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.