mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-04-08 03:00:28 -04:00
Added run script
This commit is contained in:
@@ -1 +1,3 @@
|
||||
AGPT_SERVER_URL=http://localhost:8000/api
|
||||
AGPT_MARKETPLACE_URL=http://127.0.0.1:8001/market
|
||||
NEXT_PUBLIC_AGPT_MARKETPLACE_URL=http://127.0.0.1:8001/market
|
||||
@@ -36,9 +36,9 @@ requires = ["poetry-core"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
|
||||
[tool.poetry.scripts]
|
||||
format = "linter:format"
|
||||
lint = "linter:lint"
|
||||
|
||||
format = "scripts:format"
|
||||
lint = "scripts:lint"
|
||||
app = "scripts:app"
|
||||
|
||||
[tool.pytest-watcher]
|
||||
now = false
|
||||
|
||||
@@ -25,3 +25,7 @@ def format():
|
||||
run("isort", "--profile", "black", ".")
|
||||
run("black", ".")
|
||||
run("pyright", ".")
|
||||
|
||||
|
||||
def app():
|
||||
run("uvicorn", "market.app:app", "--reload" , "--port", "8001")
|
||||
Reference in New Issue
Block a user