From ca37795a652ba0724ca348f8d19899019598185c Mon Sep 17 00:00:00 2001 From: humocs-man <251756307+humocs-man@users.noreply.github.com> Date: Mon, 6 Apr 2026 17:50:57 +0200 Subject: [PATCH] Delete .github/SETUP_CHECKLIST.md --- .github/SETUP_CHECKLIST.md | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/SETUP_CHECKLIST.md diff --git a/.github/SETUP_CHECKLIST.md b/.github/SETUP_CHECKLIST.md deleted file mode 100644 index 41fb465..0000000 --- a/.github/SETUP_CHECKLIST.md +++ /dev/null @@ -1,33 +0,0 @@ -# Repository Setup Checklist - -## Initial Setup - -### 1. Rename Template -- [ ] Update `finpilot` to your name in: Containerfile, Justfile, README.md, artifacthub-repo.yml - -### 2. Enable GitHub Actions -- [ ] Settings → Actions → General → Enable workflows -- [ ] Set "Read and write permissions" - -### 3. First Push -```bash -git add . -git commit -m "feat: initial customization" -git push origin main -``` - -### 4. Deploy -```bash -sudo bootc switch --transport registry ghcr.io/YOUR_USERNAME/YOUR_REPO:stable -sudo systemctl reboot -``` - -## Optional: Production Features - -### Enable Signing (Recommended) -```bash -cosign generate-key-pair -# Add cosign.key to GitHub Secrets as SIGNING_SECRET -# Uncomment signing in .github/workflows/build.yml -``` -