create-steedos-app 3.0.0-beta.99 → 3.0.0

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.99",
3
+ "version": "3.0.0",
4
4
  "keywords": [
5
5
  "react",
6
6
  "steedos"
@@ -13,9 +13,7 @@
13
13
  },
14
14
  "author": "Steedos Team <support@steedos.com>",
15
15
  "license": "MIT",
16
- "bin": {
17
- "create-steedos-app": "./dist/index.js"
18
- },
16
+ "bin": "./dist/index.js",
19
17
  "files": [
20
18
  "dist",
21
19
  "templates"
@@ -51,5 +49,5 @@
51
49
  "engines": {
52
50
  "node": ">=14"
53
51
  },
54
- "gitHead": "a0e9d5ee78766e54048a385b7677f6916aa287c4"
52
+ "gitHead": "20ea485d800dd4ad0a99c82b26000879c2f85741"
55
53
  }
@@ -1,6 +1,6 @@
1
1
  TRANSPORTER=redis://127.0.0.1:6379
2
2
 
3
3
  # VSCode 代码同步
4
- METADATA_SERVER=http://127.0.0.1:5000
4
+ METADATA_SERVER=http://127.0.0.1:5100
5
5
  METADATA_APIKEY=
6
6
  DEFAULT_PACKAGE_PATH=steedos-packages/contract
@@ -1,7 +1,7 @@
1
1
  # https://docs.steedos.com/deploy/steedos-config
2
2
 
3
- PORT=5000
4
- ROOT_URL=http://127.0.0.1
3
+ PORT=5100
4
+ ROOT_URL=http://127.0.0.1:5100
5
5
  TRANSPORTER=redis://127.0.0.1:6379
6
6
  CACHER=redis://127.0.0.1:6379/1
7
7
  MONGO_URL=mongodb://127.0.0.1:27017/steedos
@@ -5,7 +5,7 @@ services:
5
5
  steedos:
6
6
  image: steedos/steedos-enterprise:3.0.0-beta.63
7
7
  ports:
8
- - "5000:80" # Steedos
8
+ - "5100:80" # Steedos
9
9
  - "27017:27017" # MongoDB
10
10
  - "9001:9001" # Supervisor
11
11
  - "6379:6379" # Redis
@@ -17,7 +17,6 @@ services:
17
17
  - STEEDOS_AUTH_COOKIES_USE_SAMESITE=None
18
18
  - STEEDOS_TENANT_ENABLE_REGISTER=false
19
19
  - STEEDOS_TENANT_ENABLE_CREATE_TENANT=false
20
- - NPM_CONFIG_REGISTRY=https://registry.npmmirror.com
21
20
  - B6_PORT=5100
22
21
  - B6_MO_LOG_LEVEL=warn
23
22
  - STEEDOS_INITIAL_PACKAGES=file:/steedos-packages/media-report,file:/steedos-packages/sync_orgs_users
@@ -1,39 +0,0 @@
1
- image: steedos/gitpod-workspace-base:2.2.5
2
-
3
- # List the ports you want to expose and what to do when they are served. See https://www.gitpod.io/docs/config-ports/
4
- ports:
5
- - port: 5000
6
- onOpen: ignore
7
- visibility: public
8
- - port: 6379
9
- onOpen: ignore
10
- - port: 27017
11
- onOpen: ignore
12
- visibility: public
13
-
14
- # List the start up tasks. You can start them in parallel in multiple terminals. See https://www.gitpod.io/docs/config-start-tasks/
15
- tasks:
16
- - name: Steedos Platform
17
- command: |
18
- cd steedos-platform
19
- echo "ROOT_URL=$(gp url 5000)" >> .env.local
20
- docker-compose up
21
- - name: Steedos Packages
22
- command: |
23
- echo "METADATA_SERVER=$(gp url 5000)" >> .env.local
24
- yarn
25
- gp await-port 5000
26
- yarn start
27
- - name: Node-RED
28
- command: |
29
- gp await-port 6379
30
- cd nodered-app
31
- npm i --no-optional
32
- npm start
33
-
34
- vscode:
35
- extensions:
36
- - redhat.vscode-yaml
37
- - steedos.steedosdx-vscode
38
- - steedos.steedosdx-vscode-core
39
- - ms-ceintl.vscode-language-pack-zh-hans