feat(module): Add module for google integration
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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
|
|
||||||
|
|||||||
4
.gitmodules
vendored
4
.gitmodules
vendored
@@ -48,3 +48,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
|
||||||
|
|||||||
@@ -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/*
|
||||||
|
|||||||
2
Rakefile
2
Rakefile
@@ -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
|
||||||
|
|
||||||
|
|||||||
1
modules/google_integration
Submodule
1
modules/google_integration
Submodule
Submodule modules/google_integration added at fc43341028
@@ -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
|
||||||
|
|||||||
@@ -4,7 +4,8 @@ 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]
|
||||||
list=True
|
list=True
|
||||||
|
|||||||
Reference in New Issue
Block a user