mirror of
https://github.com/A6-9V/MQL5-Google-Onedrive.git
synced 2026-04-11 07:40:57 +00:00
- Add VS Code workspace configuration with organized folders - Add VS Code settings and recommended extensions - Create CONTRIBUTING.md with comprehensive coding standards - Create REPOSITORY_LINKS.md as central manifest - Create TIMELINE.md for project history tracking - Update .gitignore to keep VS Code settings Co-authored-by: Mouy-leng <199350297+Mouy-leng@users.noreply.github.com>
48 lines
503 B
Text
48 lines
503 B
Text
dist/
|
|
|
|
# MetaTrader 5 compiled artifacts
|
|
*.ex5
|
|
|
|
# Editor/OS clutter
|
|
*.mq5~
|
|
*.mqh~
|
|
.DS_Store
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Python cache
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Local env files (secrets)
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# IDE
|
|
# Keep .vscode/ settings for workspace consistency
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Dev Container (keep config, ignore cache)
|
|
.devcontainer/.cache/
|
|
|
|
# OS
|
|
Thumbs.db
|
|
Desktop.ini
|
|
|
|
# Personal vault - sensitive credentials
|
|
config/vault.json
|
|
data/
|