Compare commits
4 Commits
f2c176d0fd
...
259af7dc81
| Author | SHA1 | Date | |
|---|---|---|---|
| 259af7dc81 | |||
| e6dfabe90d | |||
| 85ae6164e0 | |||
| ce367e8ce0 |
@@ -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
|
|
||||||
|
|||||||
8
.gitmodules
vendored
8
.gitmodules
vendored
@@ -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
|
||||||
|
|||||||
@@ -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/*
|
||||||
|
|||||||
4
Rakefile
4
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
|
||||||
|
|
||||||
@@ -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'
|
||||||
|
|||||||
1
modules/google_integration
Submodule
1
modules/google_integration
Submodule
Submodule modules/google_integration added at 1fd0347230
Submodule modules/naliia updated: c86e7b0088...f811956551
@@ -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,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]
|
||||||
|
|||||||
1
web_app
1
web_app
Submodule web_app deleted from 4cfbf31611
Reference in New Issue
Block a user