feat(module): Add module for google integration

This commit is contained in:
2026-05-05 13:09:56 -05:00
parent f2c176d0fd
commit ce367e8ce0
8 changed files with 19 additions and 7 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
honcho==2.0.0
pudb==2025.1

View File

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

4
.gitmodules vendored
View File

@@ -48,3 +48,7 @@
path = modules/account_co_pyme
url = ssh://git@gitea.onecluster.org:6666/OneTeam/trytondo-account_co_pyme.git
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
FROM python:3.11-bullseye
FROM debian:12-slim
# 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'
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")
end

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
pydot==3.0.0
tqdm==4.67.1

View File

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