An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# OpenGitOps Website

OpenGitOps logo icon color
Globe with Meridians emoji Unicode 1F310. OpenMoji CC BY-SA 4.0

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:
```