mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2026-01-13 03:04:23 +01:00
10 lines
167 B
Bash
Executable File
10 lines
167 B
Bash
Executable File
#!/bin/bash
|
|
|
|
kill $(lsof -t -i :8000)
|
|
|
|
if [ ! -f .env ]; then
|
|
cp .env.example .env
|
|
echo "Please add your api keys to the .env file."
|
|
fi
|
|
poetry run python -m forge
|