14 lines
399 B
Plaintext
14 lines
399 B
Plaintext
[project]
|
|
entrypoint = "src/main.py"
|
|
requires = ["python-3.12"]
|
|
|
|
[dev]
|
|
build = ["bash", "scripts/setup.sh"]
|
|
run = ["bash", "/workspace/projects/scripts/http_run.sh", "-p 5000"]
|
|
pack = ["bash", "/workspace/projects/scripts/pack.sh"]
|
|
deps = ["git"] # -> apt install git
|
|
|
|
[deploy]
|
|
build = ["bash", "scripts/setup.sh"]
|
|
run = ["bash", "scripts/http_run.sh", "-p 5000"]
|
|
deps = ["git"] # -> apt install git |