https://github.com/synthesized-io/docs-ui
https://github.com/synthesized-io/docs-ui
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/synthesized-io/docs-ui
- Owner: synthesized-io
- License: mpl-2.0
- Created: 2022-06-30T08:03:19.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-03-05T13:59:05.000Z (4 months ago)
- Last Synced: 2025-03-05T14:37:34.612Z (4 months ago)
- Language: CSS
- Size: 3.45 MB
- Stars: 1
- Watchers: 13
- Forks: 1
- Open Issues: 14
-
Metadata Files:
- Readme: README.adoc
- License: LICENSE
Awesome Lists containing this project
README
:url-nodejs: https://nodejs.org/en/download/
:url-nvm: https://github.com/nvm-sh/nvm
:url-nvm-install: https://github.com/nvm-sh/nvm#installing-and-updating
:url-gulp: https://gulpjs.com/docs/en/getting-started/quick-start
:org: synthesized-io
:project: docs-ui
:repo: {org}/{project}= Synthesized Docs UI
This repository contains the css and js files used for styling Synthesized's Docs https://github.com/synthesized-io/synthesized-io.github.io[synthesized-io/synthesized-io.github.io]. It produces a UI bundle that is referenced by the Antora documentation builder.
== Use the Default UI
If you want to simply use the default UI for your Antora-generated site, add the following UI configuration to your playbook:
[source,yaml]
----
ui:
bundle:
url: https://github.com/synthesized-io/docs-ui/releases/download//ui-bundle.zip
snapshot: true
----NOTE: The `snapshot` flag tells Antora to fetch the UI when the `--fetch` command-line flag is present.
This setting is required because updates to the UI bundle are pushed to the same URL.
If the URL were to be unique, this setting would not be required.Read on to learn how to customize the default UI for your own documentation.
== Quickstart
This section offers a basic tutorial to teach you how to set up the default UI project, preview it locally, and bundle it for use with Antora.
A more comprehensive tutorial can be found in the documentation at {url-antora-docs}.=== 1. Prerequisites
To preview and bundle the default UI, you need the following software on your computer:
* {url-nodejs}[Node.js] (commands: `node` and `npm`)
* {url-gulp}[Gulp CLI] (command: `gulp`)==== 1.1. Node.js
Next, make sure that you have Node.js installed (which also provides npm).
$ node --version
An easy way to get started is to use {url-nvm}[nvm] (Node Version Manager) to manage your Node.js installation(s).
Follow the {url-nvm-install}[nvm installation instructions] to set up nvm on your machine.Once you've installed nvm, open a new terminal and install Node.js 10 using the following command:
$ nvm install 10
You can switch to this version of Node.js at any time using the following command:
$ nvm use 10
To make Node.js 10 the default in new terminals, type:
$ nvm alias default 10
Now that you have Node.js installed, you can proceed with installing the Gulp CLI.
==== 1.2. Gulp CLI
You'll need the Gulp command-line interface (CLI) to run the build.
The Gulp CLI package provides the `gulp` command which, in turn, executes the version of Gulp declared by the project.You can install the Gulp CLI globally (which resolves to a location in your user directory if you're using nvm) using the following command:
$ npm install -g gulp-cli
Verify the Gulp CLI is installed and on your PATH by running:
$ gulp --version
Now that you have the prerequisites installed, you can fetch and build the UI project.
=== 2. Clone Repo and install dependencies
[subs=attributes]
$ git clone https://github.com/{repo}
$ cd {project}Use npm to install the project’s dependencies inside the project. In your terminal, execute the following command:
$ npm i
=== 3. Preview the UI
The default UI project is configured to preview offline.
The files in the [.path]_preview-src/_ folder provide the sample content that allow you to see the UI in action.
In this folder, you'll primarily find pages written in AsciiDoc.
These pages provide a representative sample and kitchen sink of content from the real site.To build the UI and preview it in a local web server, run the `preview` command:
$ gulp preview
You'll see a URL listed in the output of this command:
....
[12:00:00] Starting server...
[12:00:00] Server started http://localhost:5252
[12:00:00] Running server
....Navigate to this URL to preview the site locally.
While this command is running, any changes you make to the source files will be instantly reflected in the browser.
This works by monitoring the project for changes, running the `preview:build` task if a change is detected, and sending the updates to the browser.Press kbd:[Ctrl+C] to stop the preview server and end the continuous build.
=== 4. Package for Use with Antora
If you need to package the UI so you can use it to generate the documentation site locally, run the following command:
$ gulp bundle
If any errors are reported by lint, you'll need to fix them.
When the command completes successfully, the UI bundle will be available at [.path]_build/ui-bundle.zip_.
You can point Antora at this bundle using the `--ui-bundle-url` command-line option.If you have the preview running, and you want to bundle without causing the preview to be clobbered, use:
$ gulp bundle:pack
The UI bundle will again be available at [.path]_build/ui-bundle.zip_.
==== Source Maps
The build consolidates all the CSS and client-side JavaScript into combined files, [.path]_site.css_ and [.path]_site.js_, respectively, in order to reduce the size of the bundle.
{url-source-maps}[Source maps] correlate these combined files with their original sources.This "`source mapping`" is accomplished by generating additional map files that make this association.
These map files sit adjacent to the combined files in the build folder.
The mapping they provide allows the debugger to present the original source rather than the obfuscated file, an essential tool for debugging.In preview mode, source maps are enabled automatically, so there's nothing you have to do to make use of them.
If you need to include source maps in the bundle, you can do so by setting the `SOURCEMAPS` environment variable to `true` when you run the bundle command:$ SOURCEMAPS=true gulp bundle
In this case, the bundle will include the source maps, which can be used for debugging your production site.
== Copyright and License
Copyright (C) 2017-present OpenDevise Inc. and the Antora Project.
Use of this software is granted under the terms of the https://www.mozilla.org/en-US/MPL/2.0/[Mozilla Public License Version 2.0] (MPL-2.0).
See link:LICENSE[] to find the full license text.