All Projects → cake-build → Website

cake-build / Website

Licence: mit
🌎 The Cake website: https://cakebuild.net

Projects that are alternatives of or similar to Website

Gaintime
GainTime é um framework de HTML, CSS e JS para desenvolvimento de projetos responsivos, focado na simplicidade.
Stars: ✭ 19 (-32.14%)
Mutual labels:  website
Codeforsanjose.github.io
Code for San José website
Stars: ✭ 10 (-64.29%)
Mutual labels:  website
Spimedb
EXPLORE & EDIT REALITY
Stars: ✭ 14 (-50%)
Mutual labels:  website
Website
The code that powers the Egee.io website.
Stars: ✭ 25 (-10.71%)
Mutual labels:  website
Online Bling
Stars: ✭ 9 (-67.86%)
Mutual labels:  website
Auv Iitk.github.io
Solarized Theme Based Website
Stars: ✭ 11 (-60.71%)
Mutual labels:  website
Syscrack
Virtual Online Crime Simulator (VOCS) written in PHP 7.0
Stars: ✭ 17 (-39.29%)
Mutual labels:  website
Docslikecode
Read stories, learn through practice, share with others, to treat docs as code.
Stars: ✭ 28 (+0%)
Mutual labels:  website
Wonderbuild
Wonderbuild is an extremely fast, extensible build tool
Stars: ✭ 9 (-67.86%)
Mutual labels:  build-system
Android10.github.io
Jekyll project for blog: fernandocejas.com.
Stars: ✭ 15 (-46.43%)
Mutual labels:  website
Blog Src
Personal blog source.
Stars: ✭ 7 (-75%)
Mutual labels:  website
Freedombox.org
Source code for the freedombox.org website. Read-only mirror of https://salsa.debian.org/freedombox-team/freedombox.org
Stars: ✭ 8 (-71.43%)
Mutual labels:  website
Typographie
Web service for preparation of Russian texts for the web publication
Stars: ✭ 12 (-57.14%)
Mutual labels:  website
Hopp
Crazy rapid build system.
Stars: ✭ 24 (-14.29%)
Mutual labels:  build-system
Next Pwa
Zero config PWA plugin for Next.js, with workbox 🧰
Stars: ✭ 909 (+3146.43%)
Mutual labels:  website
Riceteacatpanda
repo with challenge material for riceteacatpanda (2020)
Stars: ✭ 18 (-35.71%)
Mutual labels:  website
Aviaryan.github.com Retired 2018
My website (retired)
Stars: ✭ 10 (-64.29%)
Mutual labels:  website
P2p
一个基于 python 的 flask 框架的资讯网站, http://119.29.100.53:8086/
Stars: ✭ 28 (+0%)
Mutual labels:  website
Kandinsky
Проект Кандинский. Красивый сайт для НКО
Stars: ✭ 27 (-3.57%)
Mutual labels:  website
Analytics
Simple, open-source, lightweight (< 1 KB) and privacy-friendly web analytics alternative to Google Analytics.
Stars: ✭ 9,469 (+33717.86%)
Mutual labels:  website

Cake Website

This is the Cake website. It's a static site generated by Wyam which is hosted on Azure. Wyam is a static content toolkit and can be used to generate web sites, produce documentation, create ebooks, and much more.

Contributing

Any contributions are appreciated, no matter how big or small. The Cake site consists of several different sections and each one is described below.

NOTE If you're interested in contributing please reach out to us on GitHub Discussions first.

Documentation

The basic documentation pages can be found under ./input/docs. The directory structure mirrors what's on the site. Most pages are written in Markdown. To add a new page, just add a new file.

Blog

The Cake site contains a blog where important announcements and other relevant information are posted. The blog posts can be found under ./input/blog. As with documentation pages, blog posts are written in Markdown. The file name for each blog post contains its published date in the format YYYY-MM-DD-title.md.

Extensions

PLEASE NOTE: Extension authors do not have to manually create YAML files as there is an automated process that scans nuget.org twice per day to find all extensions that follow the recommended naming convention (which is Cake.xxx for addins and Cake.xxx.Module for modules, where xxx describes the functionality provided by the extension) and generates the appropriate YAML content based on the metadata for the NuGet package.

All extensions are specified in individual YAML files under ./extensions. Adding an extension here will trigger downloading it's NuGet Package during site generation and will include it in the "Reference" and "Extensions" sections of the Cake site.

The format of an extension file generally looks like:

Type: Addin
Name: Cake.Wyam
NuGet: Cake.Wyam
Assemblies:
- "/**/Cake.Wyam.dll"
Repository: https://github.com/Wyamio/Wyam
Author: Dave Glick, Gary Ewan Park
Description: "An alias that generates static sites and other content using Wyam."
Categories:
- Documentation
- Static Site Generation

Type can be one of the following values: Addin, Module, Recipe.

Search

Search uses Algolia DocSearch as backend. Configuration for crawler is available at https://github.com/algolia/docsearch-configs/blob/master/configs/cakebuild.json.

Building

The site is built using Cake (of course!). There are a number of different targets depending on what you're working on and how complete you want the generated site to be.

build --target=GetSource will download the Cake source code that the generation process uses to create the "API" section.

build --target=GetExtensionPackages will download new NuGet packages for all specified extensions. These packages are used to create the "Reference" and "Extensions" sections.

build --target=GetArtifacts will download both the Cake source code and the extension NuGet packages.

build --target=Build will run a complete build, downloading new copies of Cake source code and extension NuGet packages. Note that due to the number of extensions and the complexity of generating complete API documentation, the site generation may take a while (sometimes as long as 20 minutes).

build --target=Preview will run a build but will not download Cake source code or NuGet packages. This lets you shorten the build cycle by avoiding the time to obtain those resources if you've already downloaded them, or to bypass them altogether if you're just working on something like general documentation pages. This target will also launch a preview server to look at the generated site from a local web browser. The URL of the generated preview site is http://localhost:5080/.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].