create-steedos-app 3.0.0-beta.9 → 3.0.0-beta.90
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-steedos-app",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.90",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"react",
|
|
6
6
|
"steedos"
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"engines": {
|
|
52
52
|
"node": ">=14"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "196645f156c4c4cf4d07f288117c5e5d271bba0f"
|
|
55
55
|
}
|
|
@@ -4,15 +4,30 @@
|
|
|
4
4
|
"workspaces": [
|
|
5
5
|
"steedos-packages/*"
|
|
6
6
|
],
|
|
7
|
-
"repository": "git://github.com/steedos/steedos-project-template.git",
|
|
8
7
|
"scripts": {
|
|
9
|
-
"start": "
|
|
10
|
-
"
|
|
8
|
+
"start": "steedos start",
|
|
9
|
+
"start:platform": "docker-compose -f steedos-platform/docker-compose.yml up"
|
|
11
10
|
},
|
|
12
11
|
"dependencies": {
|
|
13
|
-
"@steedos/service-
|
|
12
|
+
"@steedos/service-community": "^3.0.0-beta.64",
|
|
13
|
+
"@steedos/service-enterprise": "^3.0.0-beta.1",
|
|
14
|
+
"@steedos/service-package-loader": "^3.0.0-beta.64",
|
|
15
|
+
"dotenv-flow": "^3.2.0",
|
|
16
|
+
"moleculer": "^0.14.31",
|
|
17
|
+
"ts-node": "^10.9.1",
|
|
18
|
+
"typescript": "^4.9.3"
|
|
14
19
|
},
|
|
15
|
-
"
|
|
16
|
-
"
|
|
20
|
+
"resolutions": {
|
|
21
|
+
"@azure/core-auth": "1.5.0",
|
|
22
|
+
"@azure/core-client": "1.7.3",
|
|
23
|
+
"@azure/core-lro": "2.5.4",
|
|
24
|
+
"@azure/core-rest-pipeline": "1.12.1",
|
|
25
|
+
"@azure/core-util": "1.5.0",
|
|
26
|
+
"@azure/keyvault-keys": "4.7.2",
|
|
27
|
+
"@azure/logger": "1.0.4",
|
|
28
|
+
"@azure/core-tracing": "1.0.1",
|
|
29
|
+
"@azure/core-paging": "1.5.0",
|
|
30
|
+
"@types/mime": "3.0.0",
|
|
31
|
+
"undici": "5.16.0"
|
|
17
32
|
}
|
|
18
33
|
}
|
|
@@ -3,47 +3,24 @@ version: "3.9"
|
|
|
3
3
|
services:
|
|
4
4
|
|
|
5
5
|
steedos:
|
|
6
|
-
image: steedos/steedos-
|
|
6
|
+
image: steedos/steedos-enterprise:3.0.0-beta.63
|
|
7
7
|
ports:
|
|
8
|
-
- "5000:
|
|
8
|
+
- "5000:80" # Steedos
|
|
9
|
+
- "27017:27017" # MongoDB
|
|
10
|
+
- "9001:9001" # Supervisor
|
|
11
|
+
- "6379:6379" # Redis
|
|
12
|
+
env_file:
|
|
13
|
+
- .env
|
|
14
|
+
- .env.local
|
|
9
15
|
environment:
|
|
10
|
-
-
|
|
11
|
-
-
|
|
12
|
-
-
|
|
13
|
-
-
|
|
14
|
-
-
|
|
15
|
-
-
|
|
16
|
-
-
|
|
16
|
+
- STEEDOS_WIDGETS_ADDITIONAL=@steedos-widgets/liveblocks
|
|
17
|
+
- STEEDOS_AUTH_COOKIES_USE_SAMESITE=None
|
|
18
|
+
- STEEDOS_TENANT_ENABLE_REGISTER=false
|
|
19
|
+
- STEEDOS_TENANT_ENABLE_CREATE_TENANT=false
|
|
20
|
+
- NPM_CONFIG_REGISTRY=https://registry.npmmirror.com
|
|
21
|
+
- B6_PORT=5100
|
|
22
|
+
- B6_MO_LOG_LEVEL=warn
|
|
23
|
+
- STEEDOS_INITIAL_PACKAGES=file:/steedos-packages/media-report,file:/steedos-packages/sync_orgs_users
|
|
17
24
|
volumes:
|
|
18
25
|
- "./steedos-storage:/steedos-storage"
|
|
19
|
-
|
|
20
|
-
mongodb:
|
|
21
|
-
condition: service_healthy
|
|
22
|
-
|
|
23
|
-
redis:
|
|
24
|
-
image: redis:6.2.10
|
|
25
|
-
command: "redis-server --save \"\" --appendonly no --loglevel warning"
|
|
26
|
-
ports:
|
|
27
|
-
- "6379:6379"
|
|
28
|
-
|
|
29
|
-
mongodb:
|
|
30
|
-
image: mongo:4.4
|
|
31
|
-
ports:
|
|
32
|
-
- 27017:27017
|
|
33
|
-
command: "--bind_ip_all --replSet steedos --logpath /var/log/mongodb/mongod.log"
|
|
34
|
-
healthcheck:
|
|
35
|
-
test: echo 'db.runCommand("ping").ok' | mongo --quiet | grep 1
|
|
36
|
-
interval: 10s
|
|
37
|
-
timeout: 10s
|
|
38
|
-
retries: 5
|
|
39
|
-
volumes:
|
|
40
|
-
- './steedos-storage-mongodb:/data/db'
|
|
41
|
-
|
|
42
|
-
mongodb-init:
|
|
43
|
-
image: mongo:4.4
|
|
44
|
-
restart: "no"
|
|
45
|
-
depends_on:
|
|
46
|
-
mongodb:
|
|
47
|
-
condition: service_healthy
|
|
48
|
-
command: >
|
|
49
|
-
mongo --host mongodb:27017 --eval "rs.initiate({ _id: 'steedos', members: [{_id: 0, host: 'mongodb:27017'}]})"
|
|
26
|
+
- "../steedos-packages:/steedos-packages"
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
require('dotenv-flow').config({});
|
|
2
|
-
|
|
3
2
|
// Moleculer Configuration
|
|
4
3
|
// https://moleculer.services/docs/0.14/configuration.html
|
|
5
4
|
module.exports = {
|
|
@@ -9,10 +8,10 @@ module.exports = {
|
|
|
9
8
|
// Available values: trace, debug, info, warn, error, fatal
|
|
10
9
|
logLevel: "info",
|
|
11
10
|
|
|
12
|
-
|
|
11
|
+
transporter: process.env.TRANSPORTER,
|
|
13
12
|
|
|
14
13
|
// Called after broker started.
|
|
15
14
|
started(broker) {
|
|
16
|
-
}
|
|
17
|
-
|
|
15
|
+
}
|
|
16
|
+
|
|
18
17
|
};
|