Introduced a new example-krops.nix file for deployment configuration, providing a template for machine-specific setups. Updated the .gitignore to include krops.nix, ensuring user-specific configurations are not tracked. Expanded the DEPLOYMENT-GUIDE.md with detailed initial setup instructions, including steps for creating and customizing krops.nix and machine configurations, enhancing the onboarding process for new users.
29 lines
581 B
Text
29 lines
581 B
Text
build/
|
|
node_modules/
|
|
dist/
|
|
result
|
|
machine-specific
|
|
web-app
|
|
lnbits
|
|
lnbits-extensions
|
|
|
|
# User-specific deployment configuration
|
|
# Copy example-krops.nix to krops.nix and customize
|
|
krops.nix
|
|
|
|
# Machine-specific configurations (user creates these)
|
|
# Keep example-machine as a template
|
|
config/machines/*
|
|
!config/machines/example-machine/
|
|
|
|
# Secrets - only ignore unencrypted secrets
|
|
# Encrypted .age files are SAFE to commit
|
|
secrets/**/!(*.age)
|
|
secrets/**/*.txt
|
|
secrets/**/*.key
|
|
secrets/**/*.pem
|
|
secrets/**/*.env
|
|
|
|
# Age/Passage identity files (NEVER commit these!)
|
|
.passage/
|
|
identities
|