Follow these steps to setup an existing workspace:

1

Clone git repository

Clone the git repo and cd into the workspace directory

git clone https://github.com/[YOUR_GIT_REPO].git

cd your_workspace_directory
2

Create and activate a virtual env

python3 -m venv aienv
source aienv/bin/activate
3

Install phidata

pip install -U phidata
4

Setup workspace

phi ws setup
5

Copy secrets

Copy workspace/example_secrets to workspace/secrets

cp -r workspace/example_secrets workspace/secrets
6

Start workspace

Install docker desktop if needed.

phi ws up
7

Stop workspace

phi ws down