Go to file
Jason Stirnaman 6067315a58
5204 v2 update downloads and install instructions (#5214)
* chore(ci): Docker install gpg and wget for test image.

* chore(ci): add a config (temporary) for v2 tests.

* chore(ci): tests: replace latest-patch tag with environment variable.

* chore(ci): test runner

- test.sh diffs against origin/master
- test.sh builds the image for each run and then removes the container after the run.
- tesh.sh adds examples for running and debugging to remind myself.
- compose.yaml adds a bind mount to copy docs-v2/data into docs-v2/test.
- Dockerfile: simplify path use
- run-tests.sh: make default run less verbose, add support for a verbose option (and future options).
- run-tests.sh: generates a .env.products file from data/products.yml and sources the file variables as environment variables to use in test runs.
- run-tests.sh: adds some misc. test setup.
- requirements.txt: return to using the influxdb3-python release

* chore(v2): Update and test v2 OSS and CLI install instructions:

- Update download URLs and paths for all distributions.
- Update and fix install instructions, make consistent between browser downloading and shell
- Make testable.

* chore(v2): Ignore parse_yaml.sh download.
2023-11-06 09:48:01 -06:00
.ci Fix: Placeholder cleanup (#5164) 2023-10-04 09:36:20 -05:00
.circleci updated circleci config 2023-01-31 13:40:57 -07:00
.github Update new feature issue template 2022-04-14 16:08:59 -06:00
.vscode chore(ci): Add vale script, configuration, and fixes (#5081) 2023-08-11 13:50:31 -05:00
api-docs chore(api): add API compatibility overview to API ref (#5192) 2023-10-25 11:35:38 -05:00
assets Add influxctl release notes (#5206) 2023-10-30 13:58:23 -06:00
content 5204 v2 update downloads and install instructions (#5214) 2023-11-06 09:48:01 -06:00
data Release influxctl v2.2.0 2023-10-27 09:31:11 -06:00
deploy Version restructure (#5133) 2023-09-12 23:33:31 -06:00
flux-build-scripts Version restructure (#5133) 2023-09-12 23:33:31 -06:00
layouts fix(v3): remove v2-prefer note, replace with specific recommendations (#5195) 2023-10-26 14:45:38 -05:00
resources Add files via upload (#4395) 2022-10-06 13:32:02 -06:00
shared/text fix: v3 compressed examples, gzip capitalization (#5142) 2023-09-18 13:13:00 -05:00
static chore(serverless-grafana): update "create a datasource" for InfluxQL 2023-08-29 17:18:45 -05:00
test 5204 v2 update downloads and install instructions (#5214) 2023-11-06 09:48:01 -06:00
.gitignore Jts/api guides (#3862) 2022-06-15 19:15:46 -05:00
.prettierrc.yaml fix: Authorization, not Authentication, header (#3342) 2021-11-03 16:53:56 -05:00
.s3deploy.yml added font file extensions to s3deploy caching config 2019-01-19 08:30:43 -07:00
.vale.ini chore(ci): Vale: ignore words, ignore spelling and ellipses in table cells (#5066) 2023-08-01 15:00:28 -05:00
CONTRIBUTING.md InfluxDB Clustered documentation (#5126) 2023-09-06 06:21:47 -06:00
Dockerfile 5204 v2 update downloads and install instructions (#5214) 2023-11-06 09:48:01 -06:00
LICENSE added license and issue template, moved security.md 2019-10-07 10:27:36 -06:00
README.md chore: Add Vale instructions to Contributing, update tested Hugo version (#5088) 2023-08-17 10:21:46 -05:00
compose.yaml 5204 v2 update downloads and install instructions (#5214) 2023-11-06 09:48:01 -06:00
config.staging.toml Version restructure (#5133) 2023-09-12 23:33:31 -06:00
config.toml Version restructure (#5133) 2023-09-12 23:33:31 -06:00
package.json chore(deps-dev): bump postcss from 8.4.23 to 8.4.31 (#5168) 2023-10-11 09:11:36 -05:00
test.sh 5204 v2 update downloads and install instructions (#5214) 2023-11-06 09:48:01 -06:00
yarn.lock chore(deps-dev): bump postcss from 8.4.23 to 8.4.31 (#5168) 2023-10-11 09:11:36 -05: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.101.0.

  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.