Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 24 additions & 1 deletion config/config_embeds.go
Original file line number Diff line number Diff line change
@@ -1,15 +1,38 @@
package config

import _ "embed"
// This package manages embedded static files, configurations, and templates
// using the standard Go 'embed' directive.

import (
_ "embed"
)

// =======================================================
// 1. PROJECT CONFIGURATION TEMPLATES (Development & Deployment)
// These files provide default settings and ignore rules for the repository structure.
// =======================================================

//go:embed .gitignore
var GitIgnore string

//go:embed .env.example
var EnvExample string


// =======================================================
// 2. DOCUMENTATION
// Core project documentation.
// =======================================================

//go:embed README.md
var ReadMe string


// =======================================================
// 3. TLS / Caddy TEMPLATES
// Configuration and environment examples specifically for Caddy web server and TLS setup.
// =======================================================

//go:embed tls/Caddyfile.tmpl
var CaddyfileTLS string

Expand Down