1 2 3 4 5 6 7 8 9 10#!/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
1 2 3 4 5 6 7 8 9 10
#!/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