v0.0.1
This commit is contained in:
73
.gitignore
vendored
Normal file
73
.gitignore
vendored
Normal file
@@ -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
|
||||||
Reference in New Issue
Block a user