Updated run script

This commit is contained in:
SwiftyOS
2023-09-15 10:21:44 +02:00
parent 42bc3af109
commit dce7636798

View File

@@ -1,4 +1,9 @@
#!/bin/bash
kill $(lsof -t -i :8000)
poetry install
cp .env.example .env
if [ ! -f .env ]; then
cp .env.example .env
echo "Please add your api keys to the .env file."
fi
poetry run python -m forge &