https://github.com/gitops-tech/example-application
Example Application Repository to demonstrate GitOps
https://github.com/gitops-tech/example-application
gitops
Last synced: 16 days ago
JSON representation
Example Application Repository to demonstrate GitOps
- Host: GitHub
- URL: https://github.com/gitops-tech/example-application
- Owner: gitops-tech
- Created: 2019-10-05T06:49:08.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2021-04-21T16:01:31.000Z (almost 5 years ago)
- Last Synced: 2025-12-19T00:00:12.528Z (3 months ago)
- Topics: gitops
- Language: Dockerfile
- Homepage:
- Size: 6.84 KB
- Stars: 6
- Watchers: 1
- Forks: 13
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Example Application Repository
This is an application repository to perform *Operations on Pull Request* via an environment repository.
It runs a GitHub Workflow to build a container image on a new release, and triggers a workflow in the environment repository to create a pull request with the new application version.
## Requirements
- Secret: `PERSONAL_ACCESS_TOKEN` to trigger GitHub Workflows in the environment Repository
- Secret: `REGISTRY_USER` for the container image registry repository
- Secret: `REGISTRY_TOKEN` for the container image registry token
## Run the App
```bash
docker build -t app .
docker run -p 8080:8080 app
```