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
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,15 +19,15 @@ This is a collection of links I, as a web developer, use very frequently. Maybe
19
19
20
20
To start WebdevHome locally run:
21
21
22
-
~~~
22
+
```shell
23
23
npm ci
24
-
~~~
24
+
```
25
25
26
26
and then:
27
27
28
-
~~~
28
+
```shell
29
29
npm run dev
30
-
~~~
30
+
```
31
31
32
32
This starts a watcher that builds the project every time you make some changes. Also, the local version of your app (running on localhost:3000) gets opened in your default browser automatically.
33
33
@@ -37,19 +37,19 @@ End the watcher script by pressing `[Ctrl]` + `[C]` in your terminal.
37
37
38
38
If you want to run this app in your own Docker environment run the following commands from inside the project root directory:
39
39
40
-
~~~
40
+
```shell
41
41
docker-compose build
42
-
~~~
42
+
```
43
43
44
44
and then:
45
45
46
-
~~~
46
+
```shell
47
47
docker-compose up
48
-
~~~
48
+
```
49
49
50
-
*Or`docker-compose up -d` to run in detached mode.*
50
+
_Or`docker-compose up -d` to run in detached mode._
51
51
52
-
*Halt the app in detached mode by running `docker-compose down`.*
52
+
_Halt the app in detached mode by running `docker-compose down`._
53
53
54
54
If you make any changes, start again at `docker-compose build`.
0 commit comments