miacelium-web

Static website for miacelium.gay
Log | Files | Refs

.gitignore (547B)


      1 # Credentials and secrets - NEVER commit these
      2 .env
      3 .env.*
      4 *.env
      5 secrets/
      6 credentials/
      7 *.key
      8 *.pem
      9 *.crt
     10 *_rsa
     11 *_ed25519
     12 *.p12
     13 *.pfx
     14 
     15 # API keys and tokens
     16 *token*
     17 *secret*
     18 *password*
     19 *apikey*
     20 *.credentials
     21 
     22 # SSH
     23 .ssh/
     24 id_rsa*
     25 id_ed25519*
     26 
     27 # Config files that might contain secrets
     28 config.local.*
     29 *.local.json
     30 *.local.yml
     31 *.local.yaml
     32 
     33 # Database
     34 *.db
     35 *.sqlite
     36 *.sqlite3
     37 
     38 # Logs
     39 *.log
     40 logs/
     41 
     42 # OS files
     43 .DS_Store
     44 Thumbs.db
     45 desktop.ini
     46 
     47 # Editor files
     48 .vscode/
     49 .idea/
     50 *.swp
     51 *.swo
     52 *~
     53 
     54 # Node
     55 node_modules/
     56 
     57 # Python
     58 __pycache__/
     59 *.pyc
     60 .venv/
     61 venv/