Compare commits
2 commits
f2d17d633b
...
085e35d529
Author | SHA1 | Date | |
---|---|---|---|
085e35d529 | |||
ec6c2d7633 |
2 changed files with 12 additions and 4 deletions
|
@ -58,10 +58,16 @@ docker stop quartz-wiki
|
||||||
|
|
||||||
On first run, the container will download the necessary dependencies, build the site, and download the content repository.
|
On first run, the container will download the necessary dependencies, build the site, and download the content repository.
|
||||||
|
|
||||||
After that, you can configure whatever you would like in `/srv/quartz/src` using the stock options found in the quartz [documentation](https://quartz.jzhao.xyz/configuration) Bare minimum should be `baseUrl` and `pageTitle`.
|
After that, you can configure whatever you would like in `/srv/quartz/src` using the stock options found in the quartz [documentation](https://quartz.jzhao.xyz/configuration)
|
||||||
|
Bare minimum should be `baseUrl` and `pageTitle`.
|
||||||
|
|
||||||
🥳 Done! 🎉
|
🥳 Done! 🎉
|
||||||
|
|
||||||
|
|
||||||
|
> [!NOTE] Cloudflare
|
||||||
|
> I've found that the cron schedule will eventually start having fatal git errors. Disabling Cloudflare fixed this. I am moving away from their services after their many controversies. Do with that what you will.
|
||||||
|
|
||||||
|
|
||||||
## Manually Building the Site
|
## Manually Building the Site
|
||||||
|
|
||||||
If you don't use the cron job, and don't feel like restarting the container, you can build the site manually.
|
If you don't use the cron job, and don't feel like restarting the container, you can build the site manually.
|
||||||
|
@ -110,4 +116,5 @@ environment:
|
||||||
| `BUILD_SCHEDULE` | Cron expression for scheduling site builds | `"*/10 * * * *"` every 10 min |
|
| `BUILD_SCHEDULE` | Cron expression for scheduling site builds | `"*/10 * * * *"` every 10 min |
|
||||||
| `CONTENT_REPO` | URL of the content repository | `https://code.modernleft.org/gravityfargo/empty.git` |
|
| `CONTENT_REPO` | URL of the content repository | `https://code.modernleft.org/gravityfargo/empty.git` |
|
||||||
|
|
||||||
> [!NOTE] > `CONTENT_REPO` Must use https, not git.
|
> [!NOTE] >
|
||||||
|
> `CONTENT_REPO` Must use https, not git.
|
||||||
|
|
|
@ -26,8 +26,9 @@ cd ~/Repositories/quartz-docker
|
||||||
make run
|
make run
|
||||||
```
|
```
|
||||||
|
|
||||||
If 200+ files are claiming to be modified, you may need to disable filemode checking:
|
If 200+ files are claiming to be modified, you may need to disable file mode checking:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git config --global core.fileMode false
|
# use --global at your own risk
|
||||||
|
git config core.fileMode false
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue