| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
This repository stores the source of Computorg.
Our website has been built with Quarto, an open-source scientific and technical publishing system. The first thing you need to compile the website is therefore to install Quarto, which can be done by downloading the corresponing installer here: https://quarto.org/docs/get-started/.
If you are using the new Positron IDE, quarto is already bundled with it. You can simply type which quarto within the built-in terminal in Positron and add the returned path to your PATH.
You need to install Microsoft DotNet SDK which is now v10.0. Installers can be found here: https://dotnet.microsoft.com/en-us/download. Otherwise, you can install it on Unix systems via:
sudo apt-get install dotnet-sdk-10.0brew install dotnetYou need to connect to your GitHub account.
API_GITHUB_TOKEN=your_github_tokenThe publication metadata is generated locally from the Computorg GitHub repositories before the site is rendered. The refresh step updates these generated files:
To refresh only the publication metadata, run:
dotnet run --project src/Build.fsproj -- -t UpdatePublicationsThis command runs the PublicationUpdater.Cli app through the FAKE build entrypoint and writes the generated metadata files into site/.
If you want to refresh the metadata and then rebuild the full website, run:
dotnet run --project src/Build.fsprojThe default build target runs publication refresh first and then executes quarto render.
If you only need to render the site from already-generated metadata, run:
dotnet run --project src/Build.fsproj -- -t RenderSiteNow, you can compile the website with dotnet run --project src/Build.fsproj.
| Back | FazBrowse Home | New Git URL |