Implements a Go-based CMS for editing Hugo posts and uploading images via the GitHub REST API, with no database and Git as the source of truth. Features: - Single admin auth with bcrypt password and signed session cookies - Dashboard, post listing with search, create/edit with EasyMDE editor - Media library for static/uploads/ with drag-drop and clipboard paste - Client-side autosave, unsaved changes warning, dark mode, responsive UI - Modular packages for auth, github, posts, media, session, and handlers Co-authored-by: codegirl007 <s.raide@gmail.com>
24 lines
228 B
Plaintext
24 lines
228 B
Plaintext
# Hugo build output
|
|
/public/
|
|
/resources/
|
|
.hugo_build.lock
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Editor
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Env / secrets (deploy keys, API tokens, etc.)
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# CMS binary
|
|
/cms/hugo-cms
|