https://github.com/princebansal7/next-app-cicd
Demo project with CICD and GitOps
https://github.com/princebansal7/next-app-cicd
cicd gitops kubernetes
Last synced: 3 months ago
JSON representation
Demo project with CICD and GitOps
- Host: GitHub
- URL: https://github.com/princebansal7/next-app-cicd
- Owner: princebansal7
- Created: 2025-07-24T22:38:55.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-30T10:28:58.000Z (12 months ago)
- Last Synced: 2025-07-30T12:53:13.944Z (12 months ago)
- Topics: cicd, gitops, kubernetes
- Language: TypeScript
- Homepage:
- Size: 37.1 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## How the setup is done
- Created the `npx-cicd-project` (which have docker credentials and PAT for *gitops-argocd-k8s* repo) repo and added `.github/workflows` deployment file which will do the following steps:
- Checkout code
- Docker Login
- Build Setup
- Set short commit (7 chars)
- Build and Push docker image to docker hub
- Update the `deployment.yaml` inside `gitops-argocd-k8s/npx-app-manifest` repository with latest docker image (This repo is configured with argocd on k8s cluster which will automatically detects the change and deploys the latest app to k8s cluster)
# next js app commands!
First, run the development server:
```bash
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.