17f5ce7342
- deploy-dev.yml: skip silently when DEV_FTP_PATH is missing instead of failing - config.ts: support JOOMLA_API_MCP_CONFIG env var for custom config path - Clean up stale template files from src/ - Update sftp-config template with per-repo deploy key paths Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
34 lines
974 B
Plaintext
34 lines
974 B
Plaintext
{
|
|
// Sublime Text SFTP Plugin
|
|
// Visit https://codexns.io/products/sftp_for_subime/settings for help
|
|
|
|
"type": "sftp",
|
|
|
|
"save_before_upload": true,
|
|
"upload_on_save": false,
|
|
"sync_down_on_open": false,
|
|
"sync_skip_deletes": false,
|
|
"sync_same_age": true,
|
|
"confirm_downloads": false,
|
|
"confirm_sync": true,
|
|
"confirm_overwrite_newer": false,
|
|
|
|
"host": "dev.mokoconsulting.tech",
|
|
"user": "mokoconsulting_dev",
|
|
"port": "22",
|
|
|
|
"ssh_key_file": "C:/Users/jmill/OneDrive/Documents/Keys/repos/joomla-api-mcp",
|
|
//"password": "",
|
|
|
|
"remote_path": "/home/mokoconsulting_dev/",
|
|
"ignore_regexes": [
|
|
"\\.sublime-(project|workspace|settings)", "\\.libsass.json/",
|
|
"sftp-config(-alt\\d?)?\\.json", "sftp-config.json.template",
|
|
"sftp-settings\\.json", "/venv/", "\\.svn/", "\\.hg/", "\\.git*",
|
|
"\\.bzr", "_darcs", "CVS", "\\.DS_Store", "Thumbs\\.db", "robots\\.txt",
|
|
"desktop\\.ini", "\\.ffs*", "\\.editorconfig", "\\.md", "\\.zip", "docs/"
|
|
],
|
|
|
|
"connect_timeout": 30
|
|
}
|