You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -33,6 +33,10 @@ demo-app
33
33
├── .eslintignore
34
34
├── .prettierrc
35
35
├── .prettierignore
36
+
├── docker
37
+
│ ├── dev.js
38
+
│ ├── docker-compose.yml
39
+
│ └── Dockerfile.dev
36
40
├── public
37
41
│ ├── favicon.ico
38
42
│ ├── index.html
@@ -64,6 +68,10 @@ demo-app
64
68
├── .eslintignore
65
69
├── .prettierrc
66
70
├── .prettierignore
71
+
├── docker
72
+
│ ├── dev.js
73
+
│ ├── docker-compose.yml
74
+
│ └── Dockerfile.dev
67
75
├── public
68
76
│ ├── favicon.ico
69
77
│ ├── index.html
@@ -100,6 +108,12 @@ before running this first run `npm run build`.
100
108
Start the development server on default port `8080`.<br>
101
109
Starts server in hot mode but doesn't preserve state of component if any while reloading.
102
110
111
+
### `npm run docker:dev`
112
+
113
+
Start the development server inside the docker container.<br>
114
+
Maps machines port `8080` to `docker` container port `8080`.<br>
115
+
Helpful in case you want to do development inside container keeping the environment same for everyone, removes the need for changing node version for different applications.
116
+
103
117
### `npm run dev:hot`
104
118
105
119
Start the development server on default port `8080`.<br>
Copy file name to clipboardExpand all lines: template/README.md
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,12 @@ Starts server in hot mode but doesn't preserve state of component if any while r
28
28
Start the development server on default port `8080`.<br>
29
29
Starts server in hot mode preserves state of component also if any while applying hot load patch.
30
30
31
+
### `npm run docker:dev`
32
+
33
+
Start the development server inside the docker container.<br>
34
+
Maps machines port `8080` to `docker` container port `8080`.<br>
35
+
Helpful in case you want to do development inside container keeping the environment same for everyone, removes the need for changing node version for different applications.
0 commit comments