Telerik Documentation Infrastructure
Перейти к файлу
imtodor f73d26614a feat: Adding Apache license 2019-02-26 16:59:42 +02:00
.github/ISSUE_TEMPLATE Update issue templates 2018-07-27 15:40:13 +03:00
_assets fix: Progress navigation disappears at some scrolling on small screens 2019-02-08 11:30:40 +02:00
_buildApi fix: Removing duplicated styles from head in API 2019-02-26 11:36:39 +02:00
_common/root chore: Removing unnecessary test file 2018-10-26 12:02:22 +03:00
_data feat: Automate top-navigation obtaining 2019-02-05 14:15:06 +02:00
_includes feat: Enable different top navigations in same docmentation site 2019-02-18 16:28:54 +02:00
_layouts feat: Liquid parser for front-matter added 2019-02-26 13:56:59 +02:00
_plugins feat: Liquid parser for front-matter added 2019-02-26 13:56:59 +02:00
_templates Jekyll added 2018-02-20 16:38:41 +02:00
docs-watcher fix: Fixed syncronization between docker and host of files and folders with whitespace 2018-06-27 15:03:40 +03:00
fonts fix: Adding API related fonts 2018-09-03 16:01:18 +03:00
styles fix: Removing woff2 ff 2019-02-12 10:36:47 +02:00
.contentignore chore: Adding flag for KB portal 2018-11-05 18:21:40 +02:00
.dockerignore chore: Adding API related folder to docker ignore 2018-11-20 08:58:58 +02:00
.editorconfig Jekyll added 2018-02-20 16:38:41 +02:00
.exclude fix: Excluded files should be on a separate line for rsync 2018-12-03 17:13:46 +02:00
.gitignore chore: Updating ignoring files 2018-09-05 18:06:34 +03:00
.ruby-version Jekyll added 2018-02-20 16:38:41 +02:00
Dockerfile chore: Simplifying Dockerfile 2019-02-14 18:14:02 +02:00
Gemfile feat: Setting UTF-8 to docker locale and installing NodeJS 2019-02-14 17:02:35 +02:00
Gemfile.lock feat: Sitemap generation added. 2018-09-03 14:33:39 +03:00
LICENSE feat: Adding Apache license 2019-02-26 16:59:42 +02:00
README.md Update README.md 2019-02-14 17:35:27 +02:00
bs-config.js Jekyll added 2018-02-20 16:38:41 +02:00
build-docs.sh feat: Setting UTF-8 to docker locale and installing NodeJS 2019-02-14 17:02:35 +02:00
copy_content.sh fix: Variable init 2018-06-07 10:59:52 +03:00
copy_local.sh feat: Automate top-navigation obtaining 2019-02-05 14:15:06 +02:00
exclude_dirs.txt feat: Adding build API files 2018-11-15 09:58:50 +02:00
exclude_files.txt fix: Excluded files should be on a separate line for rsync 2018-12-03 17:13:46 +02:00
favicon.ico Jekyll added 2018-02-20 16:38:41 +02:00
install-npm.sh Jekyll added 2018-02-20 16:38:41 +02:00
knowledge-base.html fix: KB portal include API reference search option nevertheless the site has or not 2018-11-27 13:23:49 +02:00
robots.txt feat: Sitemap generation added. 2018-09-03 14:33:39 +03:00
search.html fix: Remove search results page from sitemap 2018-09-07 17:46:13 +03:00
start-docs.sh feat: Setting UTF-8 to docker locale and installing NodeJS 2019-02-14 17:02:35 +02:00
watch.sh feat: Syncronization between host machine and Docker container added. 2018-06-26 14:02:24 +03:00

README.md

docs-seed repo

Contains the documentation site implementation.

Local Setup

This section describes the best practices about what and how should be done in order to run the documentation locally.

Prerequisites

  • Install Docker (Community Edititon(CE) is enough) - please use the official Docker installation guide. Accept the default installation instructions (use Linux containers, etc.)
    • From the Docker Settings window, share the drive where the documentation repos reside with Docker.
  • Choose a repo you want to contribute to (e.g. https://github.com/telerik/xaml-docs.git, we will refer to that repo later as 'MY-REPO')
  • Pull the repo onto your hard drive (e.g. "D:\Work\xaml-docs")

IMPORTANT: In case you are not able to install and use Docker, please go to Instructions (without Docker), otherwise continue to the next section.

Instructions (with Docker)

  • Clone the current (seed) repo
git clone git@github.com:telerik/docs-seed.git
  • Go to the directory in which you've pulled it (e.g. D:\Work\docs-seed)
  • Open a terminal of your choice (e.g., gitBash)
  • Run the following command by passing the MY-REPO path (the quotes are mandatory):
sh copy_local.sh "D:\Work\xaml-docs"
  • Go to the MY-REPO directory
  • Open a terminal of your choice (e.g., gitBash)
  • Execute the following bash command in the root folder (where the Dockerfile is located)
sh start-docs.sh
  • This is it! You can find the documentation site on server address which is written in the terminal: http://0.0.0.0:4000/. If you can't open the previous URL, replace the '0.0.0.0' with 'localhost' - http://localhost:4000.

For example, for WPF documentation this would be: http://0.0.0.0:4000/devtools/wpf/

If you want to stop the web site and the container in which it has been served, navigate to the terminal in which you've executed the previous command and press CTRL+C.

For WPF and Silverlight, see how to pass an additional config file.

Instructions (without Docker)

  • Install ruby 2.3.3 (64bit or 32bit)
  • Install Ruby DevKit (64bit or 32bit)
  • Ensure everything is correctly installed, especially if you have previous versions installed on the machine (e.g. check whether the 'config.yml' file in the DevKit root folder contains the correct path to the ruby folder and check whether the system environmnet variables are correctly set).

For more info on the above you can read the following article - http://jekyll-windows.juthilo.com/1-ruby-and-devkit/.

  • Install bundler (if you have already installed, continue to the next step) by executing gem install bundler
  • Clone the current (seed) repo
git clone git@github.com:telerik/docs-seed.git
  • Go to the directory in which you've pulled it (e.g. D:\Work\docs-seed)
  • Open a terminal of your choice (e.g., gitBash)
  • Run the following command by passing the MY-REPO path (the quotes are mandatory):
sh copy_local.sh "D:\Work\xaml-docs"
  • Go to the MY-REPO directory
  • Open a terminal of your choice (e.g., gitBash)
  • Install gems by executing bundle install
  • Execute the following bash command in the root folder
bundle exec jekyll serve
  • This is it! You can find the documentation site on server address which is written in the terminal: http://127.0.0.1:4000/. If you can't open the previous URL, replace the '127.0.0.1' with 'localhost' - http://localhost:4000.

For example, for WPF documentation this would be: http://127.0.0.1:4000/devtools/wpf/

If you want to change the host or port just pass the --host or --port arguments to the command above as an addition (e.g. bundle exec jekyll serve --host=0.0.0.0 --port=1234).

Troubleshooting

Does Not Serve

You executed sh start-docs.sh but you did not see any Jekyll output. Instead, the command ended with

the input device is not a TTY. If you are using mintty, try prefixing the command with 'winpty'

This happens whtn using Git Bash with the MinTTY console. This console does not allow combinations such as Ctrl+C to pass to the Docker container and so you get such an error.

The easiest way to resolve it is to prefix the command with winpty:

winpty sh start-docs.sh

An alternative is to re-install Git Bash and choose the default Windows terminal this time. You can read more detailes in the following post: Docker for Windows: Interactive Sessions in MinTTY Git Bash.

Ctrl+C Does not Work

When you want to stop serving the docs, you may have to repeat the Ctrl+C command or press Enter after it.

.gitignore is Always Modified

The scripts that copy the seed repo to the content repo (MY-REPO), also update the .gitignore file so as to avoid creating unstanged changes with work files that must not be commited. If you keep getting the .gitignore checked out, see what the change is with the original and commit to your repo the version that matches what the tool generates.

Performance

Docker is a resource-intensive tool. If you are not using it on a daily basis, consider preventing it from running on startup. Right click its tray icon > Settings > General, uncheck "Start Docker when you log in". This can save you time when booting up/logging in, but you will need to explicitly start Docker before working on documentation.

Also, it tends to require a lot of HDD space, which may be an issue if you are running it on an SSD drive with limited capacity. You can reduce its quota by opening the Settings dialog > Advanced and either changing the image location, and/or reducing its max size. This also lets you limit its RAM consumption.

Extra Features

You can benefit from the following features:

Additional Config File

In case you want to add an additional config.yml file, pass it to the above command as follows:

sh start-docs.sh _silverlight.yml

LiveSync

To be able to monitor the changes you are making on the built documentation, execute the following command in a new terminal in the root directory of the site:

sh watch.sh

Prerequisite: If you haven't yet, please install Node.js.

Only Build

To only run jekyll build and not jekyll serve, you need to execute the following bash command:

sh build-docs.sh

This can be useful if you want to (or already have) setup local IIS to point to the _site folder in your documentation repo. This allows you to also test redirects that jekyll serve does not support.