mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-24 12:36:23 +00:00
docs: clarify prod hosting
This commit is contained in:
parent
6ea359e55e
commit
50a78bafa5
2 changed files with 6 additions and 2 deletions
|
@ -21,3 +21,7 @@ This will start a local web server to run your Quartz on your computer. Open a w
|
||||||
> - `--serve`: run a local hot-reloading server to preview your Quartz
|
> - `--serve`: run a local hot-reloading server to preview your Quartz
|
||||||
> - `--port`: what port to run the local preview server on
|
> - `--port`: what port to run the local preview server on
|
||||||
> - `--concurrency`: how many threads to use to parse notes
|
> - `--concurrency`: how many threads to use to parse notes
|
||||||
|
|
||||||
|
> [!warning] Not to be used for production
|
||||||
|
> Serve mode is intended for local previews only.
|
||||||
|
> For production workloads, see the page on [[hosting]].
|
||||||
|
|
|
@ -163,7 +163,7 @@ async function partialRebuildFromEntrypoint(
|
||||||
}
|
}
|
||||||
|
|
||||||
const buildId = newBuildId()
|
const buildId = newBuildId()
|
||||||
ctx.buildId = buildId
|
ctx.buildId = buildId
|
||||||
buildData.lastBuildMs = new Date().getTime()
|
buildData.lastBuildMs = new Date().getTime()
|
||||||
const release = await mut.acquire()
|
const release = await mut.acquire()
|
||||||
|
|
||||||
|
@ -360,7 +360,7 @@ async function rebuildFromEntrypoint(
|
||||||
}
|
}
|
||||||
|
|
||||||
const buildId = newBuildId()
|
const buildId = newBuildId()
|
||||||
ctx.buildId = buildId
|
ctx.buildId = buildId
|
||||||
buildData.lastBuildMs = new Date().getTime()
|
buildData.lastBuildMs = new Date().getTime()
|
||||||
const release = await mut.acquire()
|
const release = await mut.acquire()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue