35 lines
1.1 KiB
TOML
35 lines
1.1 KiB
TOML
[tool.poetry]
|
|
name = "naliiadev"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
package-mode = false
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.12, <4.0" # Note: Adjusted to standard versions unless you are actively testing 3.14 alpha
|
|
cookiecutter = ">=2.7.1"
|
|
taskipy = "^1.14.1"
|
|
trytond = "7.6.*" # Keeps it strictly on the 7.6 minor line
|
|
google-api-python-client = "^2.195.0"
|
|
google-auth-httplib2 = "^0.3.1"
|
|
google-auth-oauthlib = "^1.3.1"
|
|
|
|
|
|
[tool.taskipy.tasks]
|
|
|
|
live_sh = "docker compose -f compose.live.yaml exec --user root live bash"
|
|
status = "docker compose -f compose.live.yaml stats --no-stream"
|
|
logs = "docker compose -f compose.live.yaml logs -f"
|
|
|
|
up = "docker compose -f compose.live.yaml up -d --build"
|
|
start = "docker compose -f compose.live.yaml start"
|
|
stop = "docker compose -f compose.live.yaml stop"
|
|
restart = "docker compose -f compose.live.yaml restart"
|
|
down = "docker compose -f compose.live.yaml down -v --remove-orphans"
|
|
|
|
burn = "docker compose -f compose.live.yaml down -v --rmi all --remove-orphans"
|
|
|
|
ps = "docker compose -f compose.live.yaml ps"
|
|
|
|
see-config = "docker compose -f compose.live.yaml config"
|