create-steedos-app 2.1.73 → 2.1.74
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": "2.1.
|
|
3
|
+
"version": "2.1.74",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"steedos"
|
|
6
6
|
],
|
|
@@ -32,5 +32,8 @@
|
|
|
32
32
|
"cpy": "7.3.0",
|
|
33
33
|
"fs-extra": "8.1.0"
|
|
34
34
|
},
|
|
35
|
-
"
|
|
35
|
+
"resolutions": {
|
|
36
|
+
"**/chalk": "3.0.0"
|
|
37
|
+
},
|
|
38
|
+
"gitHead": "ee62091811d4fcf0e63575e9f813befe124ea66f"
|
|
36
39
|
}
|
|
@@ -3,6 +3,7 @@ FROM node:12.22.7
|
|
|
3
3
|
WORKDIR /app
|
|
4
4
|
|
|
5
5
|
ADD .steedos ./.steedos/
|
|
6
|
+
ADD .scripts ./.scripts/
|
|
6
7
|
ADD services ./services/
|
|
7
8
|
ADD steedos-app ./steedos-app/
|
|
8
9
|
# ADD steedos-packages ./steedos-packages/
|
|
@@ -17,4 +18,4 @@ RUN yarn
|
|
|
17
18
|
|
|
18
19
|
ENV NODE_ENV=production
|
|
19
20
|
|
|
20
|
-
CMD ["yarn", "start"]
|
|
21
|
+
CMD ["yarn", "start"]
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
image: steedos/gitpod-workspace-base:latest
|
|
1
|
+
image: ecr.aws.steedos.cn/dockerhub/steedos/gitpod-workspace-base:latest
|
|
2
2
|
|
|
3
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
4
|
ports:
|
|
@@ -17,15 +17,19 @@ ports:
|
|
|
17
17
|
visibility: public
|
|
18
18
|
# List the start up tasks. You can start them in parallel in multiple terminals. See https://www.gitpod.io/docs/config-start-tasks/
|
|
19
19
|
tasks:
|
|
20
|
-
-
|
|
20
|
+
- name: MongoDB
|
|
21
|
+
init: sh ./.scripts/setup.sh
|
|
21
22
|
command: |
|
|
22
23
|
mongod --replSet rs0 --dbpath /workspace/mongodb/data/db
|
|
23
24
|
- command: |
|
|
24
25
|
gp await-port 27017
|
|
25
26
|
mongo steedos --eval "rs.initiate()"
|
|
26
|
-
|
|
27
|
+
exit
|
|
28
|
+
- name: Redis
|
|
29
|
+
command: |
|
|
27
30
|
redis-server --save "" --appendonly no --client-output-buffer-limit replica 0 0 0 --client-output-buffer-limit pubsub 0 0 0 --client-output-buffer-limit slave 0 0 0
|
|
28
|
-
-
|
|
31
|
+
- name: Steedos
|
|
32
|
+
init: |
|
|
29
33
|
yarn install
|
|
30
34
|
command: |
|
|
31
35
|
gp await-port 27017
|
|
@@ -38,4 +42,4 @@ vscode:
|
|
|
38
42
|
- redhat.vscode-yaml
|
|
39
43
|
- steedos.steedosdx-vscode
|
|
40
44
|
- steedos.steedosdx-vscode-core
|
|
41
|
-
-
|
|
45
|
+
- ms-ceintl.vscode-language-pack-zh-hans
|