-
Notifications
You must be signed in to change notification settings - Fork 44.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into reinier/open-1855-set-up-supabase-in-ci
- Loading branch information
Showing
23 changed files
with
580 additions
and
527 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Ignore everything by default, selectively add things to context | ||
classic/run | ||
|
||
# AutoGPT | ||
!classic/original_autogpt/autogpt/ | ||
!classic/original_autogpt/pyproject.toml | ||
!classic/original_autogpt/poetry.lock | ||
!classic/original_autogpt/README.md | ||
!classic/original_autogpt/tests/ | ||
|
||
# Benchmark | ||
!classic/benchmark/agbenchmark/ | ||
!classic/benchmark/pyproject.toml | ||
!classic/benchmark/poetry.lock | ||
!classic/benchmark/README.md | ||
|
||
# Forge | ||
!classic/forge/ | ||
!classic/forge/pyproject.toml | ||
!classic/forge/poetry.lock | ||
!classic/forge/README.md | ||
|
||
# Frontend | ||
!classic/frontend/build/web/ | ||
|
||
# Platform | ||
!autogpt_platform/ | ||
|
||
# Explicitly re-ignore some folders | ||
.* | ||
**/__pycache__ | ||
|
||
autogpt_platform/frontend/.next/ | ||
autogpt_platform/frontend/node_modules | ||
autogpt_platform/frontend/.env.example | ||
autogpt_platform/frontend/.env.local | ||
autogpt_platform/backend/.env | ||
autogpt_platform/backend/.venv/ | ||
|
||
autogpt_platform/market/.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ authors = ["AutoGPT <[email protected]>"] | |
readme = "README.md" | ||
packages = [{ include = "backend" }] | ||
|
||
|
||
[tool.poetry.dependencies] | ||
python = "^3.10" | ||
aio-pika = "^9.4.3" | ||
|
@@ -67,40 +68,6 @@ cli = "backend.cli:main" | |
format = "linter:format" | ||
lint = "linter:lint" | ||
test = "run_tests:test" | ||
# https://poethepoet.natn.io/index.html | ||
|
||
[tool.poe] | ||
poetry_command = "" | ||
|
||
# poetry run poe xxx | ||
[tool.poe.tasks] | ||
test = "pytest" | ||
build = ["test", "_dbuild"] | ||
|
||
# This might break your python install :) | ||
install = ["build", "_dinstall"] | ||
|
||
# https://cx-freeze.readthedocs.io/en/stable/index.html | ||
[tool.poe.tasks._dbuild] | ||
cmd = "python setup.py build" | ||
|
||
[tool.poe.tasks.dist_app] | ||
cmd = "python setup.py bdist_app" | ||
|
||
[tool.poe.tasks.dist_dmg] | ||
cmd = "python setup.py bdist_dmg" | ||
|
||
[tool.poe.tasks.dist_msi] | ||
cmd = "python setup.py bdist_msi" | ||
|
||
[tool.poe.tasks.dist_appimage] | ||
cmd = "python setup.py bdist_appimage" | ||
|
||
[tool.poe.tasks.dist_deb] | ||
cmd = "python setup.py bdist_deb" | ||
|
||
[tool.poe.tasks._dinstall] | ||
cmd = "python setup.py install" | ||
|
||
[tool.pytest-watcher] | ||
now = false | ||
|
Oops, something went wrong.