Skip to content

Commit f6ab7d7

Browse files
author
CI bot
committed
Merge remote-tracking branch 'remotes/dev/5.1' into 5.1
2 parents 6a1f7f7 + c51cab4 commit f6ab7d7

File tree

7 files changed

+1212
-1364
lines changed

7 files changed

+1212
-1364
lines changed

.env-app

+6-3
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,12 @@ ORO_SESSION_DSN=native:
3939
###< session config ###
4040

4141
###> websocket config ###
42-
ORO_WEBSOCKET_SERVER_DSN=//0.0.0.0:8080
43-
ORO_WEBSOCKET_FRONTEND_DSN=//*:8080/ws
44-
ORO_WEBSOCKET_BACKEND_DSN=tcp://127.0.0.1:8080
42+
# websocket server DSN example: //0.0.0.0:8080
43+
ORO_WEBSOCKET_SERVER_DSN=
44+
# websocket client frontend DSN example: //*:8080/ws
45+
ORO_WEBSOCKET_FRONTEND_DSN=
46+
# websocket client backend DSN example: tcp://127.0.0.1:8080
47+
ORO_WEBSOCKET_BACKEND_DSN=
4548
###< websocket config ###
4649

4750
###> message queue config ###

.env-app.test

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
ORO_DB_URL=postgres://[email protected]/b2b_crm_dev_test
22
ORO_DB_DSN=${ORO_DB_URL}
33
ORO_MAILER_DSN=smtp://127.0.0.1
4+
ORO_WEBSOCKET_SERVER_DSN=
5+
ORO_WEBSOCKET_FRONTEND_DSN=
6+
ORO_WEBSOCKET_BACKEND_DSN=

.env-build

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
ORO_WEBSOCKET_SERVER_DSN=
2+
ORO_WEBSOCKET_FRONTEND_DSN=
3+
ORO_WEBSOCKET_BACKEND_DSN=
14
ORO_IMAGE=${ORO_PROJECT}orocommerce-application
25
ORO_IMAGE_TEST=${ORO_IMAGE}-test
36
ORO_IMAGE_INIT=${ORO_IMAGE}-init

config/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ imports:
66
parameters:
77
# Some parameter values are not set from environment variables because Symfony service container build
88
# depends on them. These parameter values cannot be changed in runtime without the application cache rebuild.
9-
web_backend_prefix: '/admin'
9+
1010
database_server_version: '13.7'
1111
secret: '%env(ORO_SECRET)%'
1212
database_dsn: '%env(ORO_DB_DSN)%'

dev.json

+1-16
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,7 @@
3939
"oro/mailchimp": "5.1.x-dev",
4040
"oro/cookie-consent": "5.1.x-dev",
4141
"oro/gridfs-config": "5.1.x-dev",
42-
"oro/commerce-demo-checkouts": "5.1.x-dev",
43-
"oro/commerce-documentation-examples": "5.1.x-dev",
44-
"oro/crm-documentation-examples": "5.1.x-dev",
45-
"oro/platform-documentation-examples": "5.1.x-dev"
42+
"oro/commerce-demo-checkouts": "5.1.x-dev"
4643
},
4744
"require-dev": {
4845
"behat/behat": "~3.12.0",
@@ -137,18 +134,6 @@
137134
"type": "path",
138135
"url": "../../package/*"
139136
},
140-
{
141-
"type": "path",
142-
"url": "../../documentation/code_examples/commerce"
143-
},
144-
{
145-
"type": "path",
146-
"url": "../../documentation/code_examples/crm"
147-
},
148-
{
149-
"type": "path",
150-
"url": "../../documentation/code_examples/platform"
151-
},
152137
{
153138
"type": "composer",
154139
"url": "https://packagist.orocrm.com"

0 commit comments

Comments
 (0)