Go to file
Joshua Powers d3bfdaa8e4
fix: remove extra bracket preventing URL formatting (#4227)
* fix: remove extra bracket preventing URL formatting
2022-07-29 12:37:01 -07:00
.circleci Show what versions of InfluxDB Flux functions are supported in (#4219) 2022-07-19 15:14:10 -06:00
.github
.vscode
api-docs chore(api): update Cloud and v2.3 API specs with latest openapi updates. (#4265) 2022-07-28 16:21:09 -05:00
assets Replace modal content when no versions of InfluxDB support a package or function (#4238) 2022-07-21 09:52:49 -06:00
content fix: remove extra bracket preventing URL formatting (#4227) 2022-07-29 12:37:01 -07:00
data Add 1.23.3 (#4247) 2022-07-26 08:30:01 -07:00
deploy
flux-build-scripts Show what versions of InfluxDB Flux functions are supported in (#4219) 2022-07-19 15:14:10 -06:00
layouts Replace modal content when no versions of InfluxDB support a package or function (#4238) 2022-07-21 09:52:49 -06:00
shared/text
static
.gitignore
.prettierrc.yaml
.s3deploy.yml
CONTRIBUTING.md
LICENSE
README.md
config.staging.toml
config.toml
package.json Show what versions of InfluxDB Flux functions are supported in (#4219) 2022-07-19 15:14:10 -06:00
yarn.lock Show what versions of InfluxDB Flux functions are supported in (#4219) 2022-07-19 15:14:10 -06:00

README.md

InfluxDB 2.0 Documentation

This repository contains the InfluxDB 2.x documentation published at docs.influxdata.com.

Contributing

We welcome and encourage community contributions. For information about contributing to the InfluxData documentation, see Contribution guidelines.

Reporting a Vulnerability

InfluxData takes security and our users' trust very seriously. If you believe you have found a security issue in any of our open source projects, please responsibly disclose it by contacting security@influxdata.com. More details about security vulnerability reporting, including our GPG key, can be found at https://www.influxdata.com/how-to-report-security-vulnerabilities/.

Running the docs locally

  1. Clone this repository to your local machine.

  2. Install NodeJS, Yarn, Hugo, & Asset Pipeline Tools

    The InfluxData documentation uses Hugo, a static site generator built in Go. The site uses Hugo's asset pipeline, which requires the extended version of Hugo along with NodeJS tools like PostCSS, to build and process stylesheets and javascript.

    To install the required dependencies and build the assets, do the following:

    1. Install NodeJS

    2. Install Yarn

    3. In your terminal, from the docs-v2 directory, install the dependencies:

      cd docs-v2
      yarn install
      

      Note: The most recent version of Hugo tested with this documentation is 0.83.1.

  3. To generate the API docs, see api-docs/README.md.

  4. Start the Hugo server

    Hugo provides a local development server that generates the HTML pages, builds the static assets, and serves them at localhost:1313.

    In your terminal, start the Hugo server:

    npx hugo server
    
  5. View the docs at localhost:1313.