From 5f6c2ef45e2bf96aa647465dc344801c3444dafd Mon Sep 17 00:00:00 2001 From: SinuS Von SifriduS Date: Thu, 13 Aug 2026 11:22:32 +0200 Subject: [PATCH] v0.0.1 --- .gitignore | 73 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2b1f1b4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,73 @@ +# file: .gitignore +# version: 1 + +# Rust build artifacts +/target/ +Cargo.lock + +# Logs +/logs/ +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* + +# Node / frontend dependencies and generated artifacts +**/node_modules/ +**/dist/ +package-lock.json +pnpm-lock.yaml +yarn.lock + +# Editor and IDE files +.vscode/* +!.vscode/extensions.json +.idea/ +.settings/* +!.settings/org.eclipse.core.resources.prefs +.project +*.suo +*.ntvs* +*.njsproj +*.sln +*.swp +*.swo +*~ + +# Operating system files +.DS_Store +Thumbs.db + +# Runtime process files +*.pid + +# Runtime/local data +/var/ +/data/ +/dbdata/ +*.db +*.db-shm +*.db-wal + +# Environment and local secrets +.env +.env.* +!.env.example + +# Runtime wallets and private keypairs +/wallets/ + +# Local configuration overrides +*.local.json +*.local.toml + +# Python helper artifacts +__pycache__/ +*.py[cod] + +# Dependency lockfiles are intentionally versioned. +!Cargo.lock +!package-lock.json +!pnpm-lock.yaml +!yarn.lock \ No newline at end of file