Compare commits

...

4 Commits

10 changed files with 21 additions and 14 deletions

View File

@@ -1,3 +1,6 @@
google-api-python-client==2.195.0
google-auth-httplib2==0.3.1
google-auth-oauthlib==1.3.1
inotify==0.2.10 inotify==0.2.10
honcho==2.0.0 honcho==2.0.0
pudb==2025.1 pudb==2025.1

View File

@@ -1,6 +1,4 @@
[web] [web]
listen = 0.0.0.0:8000 listen = 0.0.0.0:8000
root=/var/lib/trytond/www root=/var/lib/trytond/www
cors=http://localhost:5173/
cors =
http://localhost:5173

8
.gitmodules vendored
View File

@@ -2,10 +2,6 @@
path = modules/party_co path = modules/party_co
url = https://aserrador:3sh0r4d3s3gu1r@gitea.onecluster.org/OneTeam/trytondo-party_co.git url = https://aserrador:3sh0r4d3s3gu1r@gitea.onecluster.org/OneTeam/trytondo-party_co.git
branch = main branch = main
[submodule "web_app"]
path = web_app
url = https://aserrador:3sh0r4d3s3gu1r@gitea.onecluster.org/OneTeam/Naliia_webapp.git
branch = main
[submodule "modules/naliia"] [submodule "modules/naliia"]
path = modules/naliia path = modules/naliia
url = https://aserrador:3sh0r4d3s3gu1r@gitea.onecluster.org/OneTeam/trytond-au-naliia.git url = https://aserrador:3sh0r4d3s3gu1r@gitea.onecluster.org/OneTeam/trytond-au-naliia.git
@@ -48,3 +44,7 @@
path = modules/account_co_pyme path = modules/account_co_pyme
url = ssh://git@gitea.onecluster.org:6666/OneTeam/trytondo-account_co_pyme.git url = ssh://git@gitea.onecluster.org:6666/OneTeam/trytondo-account_co_pyme.git
branch = 7.6 branch = 7.6
[submodule "modules/google_integration"]
path = modules/google_integration
url = ssh://git@gitea.onecluster.org:6666/OneTeam/trytondo-google_integration.git
branch = main

View File

@@ -1,5 +1,7 @@
# TOMADO DE: https://hg.tryton.org/tryton-docker/file/tip/6.6/Dockerfile # TOMADO DE: https://hg.tryton.org/tryton-docker/file/tip/6.6/Dockerfile
FROM python:3.11-bullseye FROM debian:12-slim
# trytond DB_CACHE requiere commandos `pg_dump` y `pg_restore` # trytond DB_CACHE requiere commandos `pg_dump` y `pg_restore`
RUN apt-get update && apt-get install -y postgresql-client RUN apt-get update && \
apt-get install -y postgresql-client python3-pip curl && \
rm -rf /var/lib/apt/lists/*

View File

@@ -10,7 +10,7 @@ end
desc 'poblar entorno' desc 'poblar entorno'
task :init => [:up] do task :init => [:up] do
compose('exec', 'test.dev', 'pip3 install psycopg2 flake8') compose('exec', 'test.dev', 'pip3 install psycopg2-binary flake8 --break-system-packages')
compose('exec', 'test.dev', "bash .dev/install_module.sh") compose('exec', 'test.dev', "bash .dev/install_module.sh")
end end
@@ -50,7 +50,7 @@ namespace :live do
desc 'monitorear salida' desc 'monitorear salida'
task :tail do task :tail do
compose('logs', '-f', 'live', compose: 'compose.live.yml') compose('logs', '-f', 'live', '-n', '50', compose: 'compose.live.yml')
end end
desc 'detener entorno' desc 'detener entorno'

View File

@@ -1,3 +1,6 @@
google-api-python-client==2.195.0
google-auth-httplib2==0.3.1
google-auth-oauthlib==1.3.1
qrcode==6.1 qrcode==6.1
pydot==3.0.0 pydot==3.0.0
tqdm==4.67.1 tqdm==4.67.1

View File

@@ -4,6 +4,7 @@ root=/var/lib/trytond/www
cors= cors=
https://appdemo.naliia.co https://appdemo.naliia.co
https://app.naliia.co https://app.naliia.co
http://localhost:5173
[database] [database]

Submodule web_app deleted from 4cfbf31611