├── .github └── workflows │ └── ci-cd.yml ├── .gitignore ├── Cargo.toml ├── Dockerfile ├── README.md ├── eslint.config.js ├── helm └── rust-todo │ ├── Chart.yaml │ ├── templates │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── pvc.yaml │ └── serviceaccount.yaml │ └── values.yaml ├── index.html ├── package.json ├── postcss.config.js ├── src ├── App.tsx ├── index.css ├── main.rs ├── main.tsx ├── models.rs ├── storage.rs └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.github/workflows/ci-cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/rust-cicd-demo/HEAD/.github/workflows/ci-cd.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/rust-cicd-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/rust-cicd-demo/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/rust-cicd-demo/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/rust-cicd-demo/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/rust-cicd-demo/HEAD/eslint.config.js -------------------------------------------------------------------------------- /helm/rust-todo/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/rust-cicd-demo/HEAD/helm/rust-todo/Chart.yaml -------------------------------------------------------------------------------- /helm/rust-todo/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/rust-cicd-demo/HEAD/helm/rust-todo/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm/rust-todo/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/rust-cicd-demo/HEAD/helm/rust-todo/templates/deployment.yaml -------------------------------------------------------------------------------- /helm/rust-todo/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/rust-cicd-demo/HEAD/helm/rust-todo/templates/pvc.yaml -------------------------------------------------------------------------------- /helm/rust-todo/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/rust-cicd-demo/HEAD/helm/rust-todo/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm/rust-todo/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/rust-cicd-demo/HEAD/helm/rust-todo/values.yaml -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/rust-cicd-demo/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/rust-cicd-demo/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/rust-cicd-demo/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/rust-cicd-demo/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/rust-cicd-demo/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/rust-cicd-demo/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/rust-cicd-demo/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/rust-cicd-demo/HEAD/src/models.rs -------------------------------------------------------------------------------- /src/storage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/rust-cicd-demo/HEAD/src/storage.rs -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/rust-cicd-demo/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/rust-cicd-demo/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/rust-cicd-demo/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/rust-cicd-demo/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/rust-cicd-demo/HEAD/vite.config.ts --------------------------------------------------------------------------------