mirror of
https://github.com/A6-9V/MQL5-Google-Onedrive.git
synced 2026-04-11 07:40:57 +00:00
- Created .gitlab-ci.yml with multi-stage pipeline (validate, build, test, package, deploy) - Added comprehensive GitLab CI/CD setup guide with GET integration - Created API environment secrets documentation for all credentials - Added GitLab secrets management script (set_gitlab_secrets.sh) - Created GitLab Environment Toolkit configuration (.get-config.yml) - Added GitLab vault configuration template - Created GitLab quick reference guide - Updated documentation index with CI/CD section - Updated README with GitLab CI/CD information - Enhanced .gitignore to prevent vault files from being committed Co-authored-by: Mouy-leng <199350297+Mouy-leng@users.noreply.github.com>
50 lines
504 B
Text
50 lines
504 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
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Dev Container (keep config, ignore cache)
|
|
.devcontainer/.cache/
|
|
|
|
# OS
|
|
Thumbs.db
|
|
Desktop.ini
|
|
|
|
# Personal vault - sensitive credentials
|
|
config/vault.json
|
|
config/*vault*.json
|
|
!config/*.json.example
|
|
data/
|