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
+6-3Lines changed: 6 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,10 @@
3
3
Example for a blog post about nginx docker compose
4
4
5
5
## Prerequisites
6
-
- Github token with these repos in scope.
6
+
- Github token with these repos in scope. `GH_TOKEN`
7
+
-`docker`
8
+
-`docker compose`
9
+
-`git`
7
10
8
11
## Setup
9
12
Set your environment variables & initialize submodules
@@ -26,7 +29,7 @@ To run this you will execute one of the following commands depending on your bui
26
29
To build from local directories, run:
27
30
28
31
```bash
29
-
./build_local.sh
32
+
./bin/build_local.sh
30
33
```
31
34
32
35
This setup allows for hot-swapping of code. Any changes made in the `repo_refs` directories will be immediately reflected in the running containers, allowing developers to see their changes in real-time via the nginx server.
@@ -36,7 +39,7 @@ This setup allows for hot-swapping of code. Any changes made in the `repo_refs`
36
39
To build from GitHub repositories, run:
37
40
38
41
```bash
39
-
./build_github.sh
42
+
./bin/build_github.sh
40
43
```
41
44
42
45
The GitHub build process is isolated from the local development environment, ensuring a clean and isolated build environment. This prevents any potential conflicts with local volumes.
0 commit comments