Session 4 complete - RedFlag update management platform
🚩 Private development - version retention only ✅ Complete web dashboard (React + TypeScript + TailwindCSS) ✅ Production-ready server backend (Go + Gin + PostgreSQL) ✅ Linux agent with APT + Docker scanning + local CLI tools ✅ JWT authentication and REST API ✅ Update discovery and approval workflow 🚧 Status: Alpha software - active development 📦 Purpose: Version retention during development ⚠️ Not for public use or deployment
This commit is contained in:
426
.gitignore
vendored
Normal file
426
.gitignore
vendored
Normal file
@@ -0,0 +1,426 @@
|
||||
# RedFlag .gitignore
|
||||
# Comprehensive ignore file for Go, Node.js, and development files
|
||||
|
||||
# =============================================================================
|
||||
# Go / Go Modules
|
||||
# =============================================================================
|
||||
# Binaries for programs and plugins
|
||||
*.exe
|
||||
*.exe~
|
||||
*.dll
|
||||
*.so
|
||||
*.dylib
|
||||
|
||||
# Test binary, built with `go test -c`
|
||||
*.test
|
||||
|
||||
# Output of the go coverage tool, specifically when used with LiteIDE
|
||||
*.out
|
||||
|
||||
# Go workspace file
|
||||
go.work
|
||||
|
||||
# Dependency directories (remove comment if using vendoring)
|
||||
vendor/
|
||||
|
||||
# Go build cache
|
||||
.cache/
|
||||
|
||||
# Go mod download cache (can be large)
|
||||
*.modcache
|
||||
|
||||
# =============================================================================
|
||||
# Node.js / npm / yarn / pnpm
|
||||
# =============================================================================
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
lerna-debug.log*
|
||||
|
||||
# Diagnostic reports (https://nodejs.org/api/report.html)
|
||||
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
||||
|
||||
# Runtime data
|
||||
pids
|
||||
*.pid
|
||||
*.seed
|
||||
*.pid.lock
|
||||
|
||||
# Directory for instrumented libs generated by jscoverage/JSCover
|
||||
lib-cov
|
||||
|
||||
# Coverage directory used by tools like istanbul
|
||||
coverage/
|
||||
*.lcov
|
||||
|
||||
# nyc test coverage
|
||||
.nyc_output
|
||||
|
||||
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
|
||||
.grunt
|
||||
|
||||
# Bower dependency directory (https://bower.io/)
|
||||
bower_components
|
||||
|
||||
# node-waf configuration
|
||||
.lock-wscript
|
||||
|
||||
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
||||
build/Release
|
||||
|
||||
# Dependency directories
|
||||
node_modules/
|
||||
jspm_packages/
|
||||
|
||||
# Snowpack dependency directory (https://snowpack.dev/)
|
||||
web_modules/
|
||||
|
||||
# TypeScript cache
|
||||
*.tsbuildinfo
|
||||
|
||||
# Optional npm cache directory
|
||||
.npm
|
||||
|
||||
# Optional eslint cache
|
||||
.eslintcache
|
||||
|
||||
# Optional stylelint cache
|
||||
.stylelintcache
|
||||
|
||||
# Microbundle cache
|
||||
.rpt2_cache/
|
||||
.rts2_cache_cjs/
|
||||
.rts2_cache_es/
|
||||
.rts2_cache_umd/
|
||||
|
||||
# Optional REPL history
|
||||
.node_repl_history
|
||||
|
||||
# Output of 'npm pack'
|
||||
*.tgz
|
||||
|
||||
# Yarn Integrity file
|
||||
.yarn-integrity
|
||||
|
||||
# dotenv environment variable files
|
||||
.env
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
.env.local
|
||||
|
||||
# parcel-bundler cache (https://parceljs.org/)
|
||||
.cache
|
||||
.parcel-cache
|
||||
|
||||
# Next.js build output
|
||||
.next
|
||||
out
|
||||
|
||||
# Nuxt.js build / generate output
|
||||
.nuxt
|
||||
dist
|
||||
|
||||
# Gatsby files
|
||||
.cache/
|
||||
# Comment in the public line in if your project uses Gatsby and not Next.js
|
||||
# https://nextjs.org/blog/next-9-1#public-directory-support
|
||||
# public
|
||||
|
||||
# vuepress build output
|
||||
.vuepress/dist
|
||||
|
||||
# vuepress v2.x temp and cache directory
|
||||
.temp
|
||||
.cache
|
||||
|
||||
# Docusaurus cache and generated files
|
||||
.docusaurus
|
||||
|
||||
# Serverless directories
|
||||
.serverless/
|
||||
|
||||
# FuseBox cache
|
||||
.fusebox/
|
||||
|
||||
# DynamoDB Local files
|
||||
.dynamodb/
|
||||
|
||||
# TernJS port file
|
||||
.tern-port
|
||||
|
||||
# Stores VSCode versions used for testing VSCode extensions
|
||||
.vscode-test
|
||||
|
||||
# yarn v2
|
||||
.yarn/cache
|
||||
.yarn/unplugged
|
||||
.yarn/build-state.yml
|
||||
.yarn/install-state.gz
|
||||
.pnp.*
|
||||
|
||||
# =============================================================================
|
||||
# React / Vite / Frontend Build
|
||||
# =============================================================================
|
||||
# Vite build output
|
||||
dist/
|
||||
dist-ssr/
|
||||
build/
|
||||
|
||||
# Storybook build outputs
|
||||
storybook-static
|
||||
|
||||
# Temporary folders
|
||||
tmp/
|
||||
temp/
|
||||
|
||||
# =============================================================================
|
||||
# IDE / Editor Files
|
||||
# =============================================================================
|
||||
# VSCode
|
||||
.vscode/
|
||||
!.vscode/extensions.json
|
||||
!.vscode/settings.json
|
||||
!.vscode/tasks.json
|
||||
!.vscode/launch.json
|
||||
|
||||
# JetBrains / IntelliJ IDEA
|
||||
.idea/
|
||||
*.iml
|
||||
*.ipr
|
||||
*.iws
|
||||
|
||||
# Vim
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# Emacs
|
||||
*~
|
||||
\#*\#
|
||||
/.emacs.desktop
|
||||
/.emacs.desktop.lock
|
||||
*.elc
|
||||
auto-save-list
|
||||
tramp
|
||||
.\#*
|
||||
|
||||
# Sublime Text
|
||||
*.sublime-project
|
||||
*.sublime-workspace
|
||||
|
||||
# Kate
|
||||
.session
|
||||
|
||||
# Gedit
|
||||
*~
|
||||
|
||||
# =============================================================================
|
||||
# OS Generated Files
|
||||
# =============================================================================
|
||||
# macOS
|
||||
.DS_Store
|
||||
.DS_Store?
|
||||
._*
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
ehthumbs.db
|
||||
Thumbs.db
|
||||
|
||||
# Windows
|
||||
*.cab
|
||||
*.msi
|
||||
*.msix
|
||||
*.msm
|
||||
*.msp
|
||||
*.lnk
|
||||
|
||||
# Linux
|
||||
*~
|
||||
.fuse_hidden*
|
||||
.directory
|
||||
.Trash-*
|
||||
.nfs*
|
||||
|
||||
# =============================================================================
|
||||
# Application Specific
|
||||
# =============================================================================
|
||||
# RedFlag specific files
|
||||
*.db
|
||||
*.sqlite
|
||||
*.sqlite3
|
||||
|
||||
# Agent configuration (may contain sensitive data)
|
||||
aggregator-agent/config.json
|
||||
aggregator-agent/.agent-id
|
||||
aggregator-agent/.token
|
||||
|
||||
# Server runtime files
|
||||
aggregator-server/logs/
|
||||
aggregator-server/data/
|
||||
aggregator-server/uploads/
|
||||
|
||||
# Local cache files
|
||||
aggregator-agent/cache/
|
||||
aggregator-agent/*.cache
|
||||
/var/lib/aggregator/
|
||||
/var/cache/aggregator/
|
||||
/var/log/aggregator/
|
||||
|
||||
# Test files and coverage
|
||||
coverage.txt
|
||||
coverage.html
|
||||
*.cover
|
||||
*.prof
|
||||
test-results/
|
||||
|
||||
# Local development files
|
||||
*.local
|
||||
*.dev
|
||||
.devenv/
|
||||
dev/
|
||||
|
||||
# Build artifacts
|
||||
*.tar.gz
|
||||
*.zip
|
||||
*.rpm
|
||||
*.deb
|
||||
*.snap
|
||||
|
||||
# Documentation build
|
||||
docs/_build/
|
||||
docs/build/
|
||||
|
||||
# =============================================================================
|
||||
# Docker / Container Related
|
||||
# =============================================================================
|
||||
# Docker volumes (avoid committing data)
|
||||
volumes/
|
||||
data/
|
||||
|
||||
# Docker build context
|
||||
.dockerignore
|
||||
|
||||
# =============================================================================
|
||||
# Security / Credentials
|
||||
# =============================================================================
|
||||
# Private keys and certificates
|
||||
*.key
|
||||
*.pem
|
||||
*.crt
|
||||
*.p12
|
||||
*.pfx
|
||||
id_rsa
|
||||
id_rsa.pub
|
||||
id_ed25519
|
||||
id_ed25519.pub
|
||||
|
||||
# Passwords and secrets
|
||||
secrets/
|
||||
*.secret
|
||||
*.password
|
||||
*.token
|
||||
.auth
|
||||
|
||||
# Cloud provider credentials
|
||||
.aws/
|
||||
.azure/
|
||||
.gcp/
|
||||
.kube/
|
||||
|
||||
# =============================================================================
|
||||
# Miscellaneous
|
||||
# =============================================================================
|
||||
# Large files
|
||||
*.iso
|
||||
*.dmg
|
||||
*.img
|
||||
*.bin
|
||||
*.dat
|
||||
|
||||
# Backup files
|
||||
*.bak
|
||||
*.backup
|
||||
*.old
|
||||
*.orig
|
||||
*.save
|
||||
|
||||
# Temporary files
|
||||
*.tmp
|
||||
*.temp
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# Lock files (keep some, ignore others)
|
||||
*.lock
|
||||
# Keep package-lock.json and yarn.lock for dependency management
|
||||
# yarn.lock
|
||||
# package-lock.json
|
||||
|
||||
# Archive files
|
||||
*.7z
|
||||
*.rar
|
||||
*.tar
|
||||
*.tgz
|
||||
*.gz
|
||||
|
||||
# Profiling and performance data
|
||||
*.prof
|
||||
*.pprof
|
||||
*.cpu
|
||||
*.mem
|
||||
|
||||
# Local database files
|
||||
*.db-shm
|
||||
*.db-wal
|
||||
|
||||
# =============================================================================
|
||||
# AI / LLM Development Files
|
||||
# =============================================================================
|
||||
# Claude AI settings and cache
|
||||
.claude/
|
||||
*claude*
|
||||
|
||||
# =============================================================================
|
||||
# Include ONLY essential project files
|
||||
# =============================================================================
|
||||
!README.md
|
||||
!LICENSE
|
||||
!.gitignore
|
||||
!.env.example
|
||||
!docker-compose.yml
|
||||
!Dockerfile*
|
||||
!Makefile
|
||||
|
||||
# Only minimal README, no other documentation
|
||||
|
||||
# =============================================================================
|
||||
# ALL DOCUMENTATION (private development - version retention only)
|
||||
# =============================================================================
|
||||
# Exclude ALL documentation files - this is private development
|
||||
*.md
|
||||
!LICENSE
|
||||
*.html
|
||||
*.txt
|
||||
|
||||
# Session and development files
|
||||
SESSION_*
|
||||
claude*
|
||||
TECHNICAL_*
|
||||
COMPETITIVE_*
|
||||
PROXMOX_*
|
||||
HOW_TO_*
|
||||
NEXT_*
|
||||
Starting*
|
||||
|
||||
# Setup and documentation files
|
||||
SETUP_*
|
||||
CONTRIBUTING*
|
||||
.github/
|
||||
docs/
|
||||
|
||||
# Only keep actual project code, no documentation
|
||||
Reference in New Issue
Block a user