owpengram-server/.gitignore
2026-09-13 02:56:39 +03:00

48 lines
782 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Go build artifacts
/bin/
*.exe
*.test
*.out
coverage.*
node_modules/
# Python caches
__pycache__/
*.py[cod]
*$py.class
# install-prereqs.sh / owpengram-server.sh create this for the panel's packages.
# Untracked and unignored, it was one `git clean -fd` away from being deleted.
/.venv/
# 本地环境 / 密钥server RSA private key 必须持久化,但禁止入库)
.env
.env.*
!.env.example
*.local
*.pem
*.key
/secrets/
/data/*
!/data/langpack/
!/data/langpack/**
logs/
tmp/
.gocache/
.tdesktop-e2e/
# start-server.sh/bat generated files
.public_ip
.link_prefix
.secrets
.docker_naming
.db_naming
.server_panel.json
# Local-only destructive dev tool (deletes .env, data/, Docker volumes) --
# never belongs in the repo.
/wipe-server.bat
# IDE
.idea/
.vscode/
*.exe~