https://github.com/open-gitops/website
🌐 Source code for OpenGitOps website
https://github.com/open-gitops/website
cncf gitops sandbox-project
Last synced: about 1 month ago
JSON representation
🌐 Source code for OpenGitOps website
- Host: GitHub
- URL: https://github.com/open-gitops/website
- Owner: open-gitops
- License: other
- Created: 2021-05-28T17:26:43.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2025-07-29T20:12:11.000Z (8 months ago)
- Last Synced: 2025-07-29T22:55:24.044Z (8 months ago)
- Topics: cncf, gitops, sandbox-project
- Language: JavaScript
- Homepage: https://opengitops.dev/
- Size: 10.1 MB
- Stars: 38
- Watchers: 7
- Forks: 32
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# OpenGitOps Website

Code for CNCF OpenGitOps project website.
**👩💻 Local Development.**
```shell
# if you like npm
npm i
npm start
# Or if you like yarn
yarn install
yarn start
```
**Docker setup**
```shell
# Build container image from local filesystem with default Node version
docker build --no-cache -t website: -f Containerfile .
# Build container image from local filesystem with Node version as build arg
docker build --build-arg NODE_VERSION=19 --no-cache -t website: -f Containerfile .
# Run container image with mapping port 80 on your computer
docker run -dit -p 8000:8000 website:
```