Skip to content

isabella232/doc-templates

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

doc-templates

This repository contains templates used to create refernce documentation for developers.google.com, cloud.google.com, and other sites.

Contributing

Docs

See the docs directory for additional documentation, like a code of conduct and an overall contributing guide.

Testing

When you run the tests, the HTML generated for the test will be stored at testdata/python-small/site/api. You can inspect the output manually to verify changes and add additional tests to prevent regressions.

In a Docker container (recommended)

You can run the tests in a Docker container using Trampoline V2 with the following command:

TRAMPOLINE_BUILD_FILE=./ci/run_tests.sh TRAMPOLINE_IMAGE=gcr.io/cloud-devrel-kokoro-resources/docfx ci/trampoline_v2.sh

If you need to update the golden test files, add the UPDATE_GOLDENS env var:

UPDATE_GOLDENS=1 TRAMPOLINE_BUILD_FILE=./ci/run_tests.sh TRAMPOLINE_IMAGE=gcr.io/cloud-devrel-kokoro-resources/docfx ci/trampoline_v2.sh

The Dockerfile for the docfx image is in googleapis/doc-pipline. Any updates to the Dockerfile should be made there.

Without using Docker

If you want to run the tests in your normal environment, not in a container:

  1. Install DocFX and put a docfx executable (possibly a script that calls mono /path/to/docfx.exe) on your path.

  2. Create and activate a virtual environment:

    python3 -m venv venv
    . ./venv/bin/activate
    
  3. Install dependencies:

    python3 -m pip install -r requirements.txt
    
  4. Run linters and tests:

    black --check tests
    flake8 tests
    
    pytest tests
    

    To update goldens add the --update-goldens flag:

    pytest --update-goldens tests
    

    Warning: your local docfx version and the container image version may differ, which may cause differences in golden files. The container version is canonical.

Source Code Headers

Every file containing source code must include copyright and license information. This includes any JS/CSS files that you might be serving out to browsers. (This is to help well-intentioned people avoid accidental copying that doesn't comply with the license.)

Apache header:

Copyright 2020 Google LLC

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    https://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

About

Templates for creating reference documentation

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 25.9%
  • Smalltalk 23.7%
  • CSS 23.1%
  • JavaScript 14.5%
  • Shell 10.0%
  • Python 2.8%