feat: add evo.ninja (setup only) (#6379)

This commit is contained in:
Jordan Ellis
2023-11-27 11:29:32 -05:00
committed by GitHub
parent e70a6129cf
commit 0e332c0c12
2 changed files with 22 additions and 1 deletions

6
.gitignore vendored
View File

@@ -172,4 +172,8 @@ pri*
# ignore
ig*
.github_access_token
arena/TestAgent.json
arena/TestAgent.json
# evo.ninja
autogpts/evo.ninja/*
!autogpts/evo.ninja/setup

17
autogpts/evo.ninja/setup Executable file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
# Ensure all commands are run within this script's directory
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
cd "$SCRIPT_DIR"
# Clone the repo and checkout the release branch
REPO="https://github.com/polywrap/evo.ninja"
BRANCH="release/autogpt"
echo "Cloning evo.ninja..."
git init
git remote add origin $REPO
git pull
git checkout $BRANCH
echo "Setup successfully."