This repository was archived by the owner on Nov 2, 2023. It is now read-only.
File tree 3 files changed +24
-22
lines changed
3 files changed +24
-22
lines changed Original file line number Diff line number Diff line change 3
3
_site /
4
4
node_modules /
5
5
.vscode /
6
+ .jekyll-metadata
7
+ vendor /
Original file line number Diff line number Diff line change @@ -19,28 +19,17 @@ Labels are assigned based on [Sensible Github Labels](https://github.com/Releque
19
19
## Compile and run locally
20
20
21
21
This site runs via github pages, with automatically building PR previews via netlify.
22
- If you wish to compile and run this site locally, you will need to have ruby installed.
23
-
24
- If you're not familiar with ruby, consider using ` rvm ` (https://rvm.io/ ).
25
- Once you have Ruby installed, follow these instructions while in the project directory
26
-
27
- > Instructions
28
- >
29
- > 1. Install the jekyll and bundler gems.
30
- >
31
- > `gem install jekyll bundler`
32
- >
33
- > 2. Create a new Jekyll site at ./myblog.
34
- >
35
- > ...
36
- >
37
- > 3. Build the site and make it available on a local server.
38
- >
39
- > `bundle exec jekyll serve`
40
- >
41
- > 4. Browse to http://localhost:4000
42
-
43
- Adapted from https://jekyllrb.com/docs/
22
+
23
+ This project uses git submodules, so you will need to run the following commands
24
+ to fully clone the repo.
25
+
26
+ ``` bash
27
+ git submodule init
28
+ git submodule update
29
+ ```
30
+
31
+ You can run the site locally using ` docker-compose up ` and browse to
32
+ http://localhost:4000
44
33
45
34
## License
46
35
Original file line number Diff line number Diff line change
1
+ version : " 3.9"
2
+
3
+ services :
4
+ web :
5
+ image : docker.io/jekyll/jekyll
6
+ volumes :
7
+ - .:/srv/jekyll:Z
8
+ - ./vendor/bundle:/usr/local/bundle:Z
9
+ ports :
10
+ - " 4000:4000"
11
+ command : jekyll serve --incremental --watch
You can’t perform that action at this time.
0 commit comments