24 Commits
16.0 ... 13.0

Author SHA1 Message Date
yhaelopez
b513e2af7a refactored enterprise + third party addons clonning process 2023-12-24 12:21:11 -07:00
yhaelopez
5062e3cd42 odoocker upgrade 2023-12-20 11:12:15 -07:00
yhaelopez
1d3c88bdd2 cleanup 2023-12-15 17:21:35 -07:00
yhaelopez
b4dd2d8e7d cleanup 2023-12-15 16:59:40 -07:00
yhaelopez
26b8b3d9a8 upgrade 2023-12-15 16:53:22 -07:00
yhaelopez
528ea7fd6f fixed longpolling endpoint 2023-12-14 02:45:14 -07:00
yhaelopez
11313d644c adapted to version 13.0 2023-12-12 21:03:08 -07:00
yhaelopez
88f2c9e102 merged with 14.0 + changed odoo container back to 13 2023-12-12 20:51:08 -07:00
yhaelopez
68bbdc470f set notice for sentry 2023-12-12 20:50:08 -07:00
yhaelopez
b0ec685cd0 bring back odoo version to 14.0 2023-12-12 20:24:12 -07:00
yhaelopez
07db2e2bf0 merged with 15.0 2023-12-12 20:23:46 -07:00
yhaelopez
235b727525 fixed 15 params 2023-12-12 20:22:12 -07:00
yhaelopez
566c52813a adjusted odoo version 2023-12-12 19:18:22 -07:00
yhaelopez
cf7611fa2c solved merge conflicts 2023-12-12 19:18:07 -07:00
yhaelopez
d1fcce4d13 merge main + solve conflicts 2023-12-12 19:15:55 -07:00
Yhael S
ee25e26dd7 cleanup readme 2023-08-30 20:15:58 -05:00
Yhael S
3622713fb2 cleanup readme 2023-08-30 20:15:42 -05:00
Yhael S
13a05185b7 cleanup readme 2023-08-30 20:15:00 -05:00
Yhael S
97180b920e delete test user & token 2023-08-29 03:55:41 -05:00
Yhael S
ece5ccae8e delete test user & token 2023-08-29 03:55:16 -05:00
Yhael S
a0e574ba32 delete test user & token 2023-08-29 03:54:57 -05:00
Yhael S
476bf78846 cloned from 14.0 2023-08-29 03:24:01 -05:00
Yhael S
298778bdb5 changed default workers 2023-08-29 03:23:26 -05:00
Yhael S
e9e6f02839 changed default workers 2023-08-29 03:22:59 -05:00
4 changed files with 8 additions and 5 deletions

View File

@@ -150,7 +150,7 @@ MINIO_PROFILES="minio"
PGADMIN_PROFILES="pgadmin"
# Containers' Tags
ODOO_TAG=16.0
ODOO_TAG=13.0
POSTGRES_TAG=16.1
KEYDB_TAG=latest
MINIO_TAG=latest
@@ -202,7 +202,7 @@ DEBUG_INTERFACE=${HTTP_INTERFACE}
HTTP_PORT=8069
DEBUG_PORT=8070
XMLRPCS_PORT=8071
GEVENT_PORT=8072
LONGPOLLING_PORT=8072
HTTP_ENABLE=True
XMLRPCS=True
PROXY_MODE=True

View File

@@ -40,7 +40,7 @@ server {
}
}
location /websocket {
location /longpolling {
proxy_pass http://odoo:8072;
proxy_redirect off;
proxy_set_header Upgrade $http_upgrade;

View File

@@ -64,8 +64,8 @@ xmlrpcs_interface = ${XMLRPCS_INTERFACE}
; --xmlrpcs-port
xmlrpcs_port = ${XMLRPCS_PORT}
; --gevent-port | --longpolling-port (deprecated)
gevent_port = ${GEVENT_PORT}
; --longpolling-port
longpolling_port = ${LONGPOLLING_PORT}
; --no-http | --no-xmlrpc
http_enable = ${HTTP_ENABLE}

View File

@@ -1,5 +1,8 @@
jinja2
sortedcontainers
debugpy
websocket-client
redis
boto3
sentry-sdk==1.9.0 # Fixed because Odoo depends on urllib3==1.26.5
aiohttp