Files
geo/app/sync_config.jsonc
pierre 599b9fcda0 feat: Gestion des secteurs et migration v3.0.4+304
- Ajout système complet de gestion des secteurs avec contours géographiques
- Import des contours départementaux depuis GeoJSON
- API REST pour la gestion des secteurs (/api/sectors)
- Service de géolocalisation pour déterminer les secteurs
- Migration base de données avec tables x_departements_contours et sectors_adresses
- Interface Flutter pour visualisation et gestion des secteurs
- Ajout thème sombre dans l'application
- Corrections diverses et optimisations

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-07 11:01:45 +02:00

81 lines
5.3 KiB
JSON
Executable File

{
"pm1": {
"type": "ssh",
"host": "192.168.1.7",
"port": 22,
"username": "root",
"privateKeyPath": "/Users/pierre/.ssh/id_rsa_mbpi", // (sftp, ssh configuration) Private key path (choose one between password and private key path), note: it is not recommended to place the key in the code directory
"proxy": false,
"upload_on_save": false,
"watch": false,
"submit_git_before_upload": false,
"submit_git_msg": "",
"build": "",
"compress": false,
"remote_unpacked": false,
"delete_remote_compress": false,
"delete_local_compress": false,
"deleteRemote": false,
"upload_to_root": true,
"distPath": [],
"remotePath": "/",
"excludePath": [],
"downloadPath": "/Users/pierre/dev/PROD/PM1",
"downloadExcludePath": [],
"default": true
},
"in2": {
"type": "ssh",
"host": "145.239.9.105",
"port": 22,
"username": "debian",
"privateKeyPath": "/Users/pierre/.ssh/id_rsa_mbpi", // (sftp, ssh configuration) Private key path (choose one between password and private key path), note: it is not recommended to place the key in the code directory
"proxy": false,
"upload_on_save": false,
"watch": false,
"submit_git_before_upload": false,
"submit_git_msg": "",
"build": "",
"compress": false,
"remote_unpacked": true,
"delete_remote_compress": true,
"delete_local_compress": true,
"deleteRemote": false,
"upload_to_root": false,
"distPath": [],
"remotePath": "/var",
"excludePath": [],
"downloadPath": "",
"downloadExcludePath": [],
"default": false
}
// Reference configuration
// Environment name, supports custom names
// "test": { // Test environment
// "type": "", // (Required) Connection type, options: ftp, sftp, ssh
// "host": "0.0.0.0", // (Required) Server address
// "port": 22, // (Optional) Port number, default is 21 for ftp, 22 for sftp and ssh
// "username": "username", // (Required) Login username
// "password": "password", // Login password (choose one between password and private key path)
// // "privateKeyPath": "/your_path/id_rsa", // (sftp, ssh configuration) Private key path (choose one between password and private key path), note: it is not recommended to place the key in the code directory
// // "secretKeyPath": "/your_path/secret_key.txt", // Encrypted private key path, used to encrypt username and password, note: it is not recommended to place the key in the code directory
// "proxy": false, // Whether to use a proxy, default is false
// "upload_on_save": false, // Real-time submission after saving, recommended for single-person development. When upload_on_save is set to true, watch, submit_git_before_upload, compress, deleteRemote are invalid, default is false
// "watch": false, // Monitor file changes in the upload directory, default is false. If upload_on_save is true, this item is invalid. If distPath directory is configured, only file changes in the distPath directory are monitored
// "submit_git_before_upload": false, // For team development, submit local git before uploading code to prevent overwriting remote code, default is false
// "submit_git_msg": "", // Configuration for git commit message, default is empty. If submit_git_before_upload is true and this is not filled, a prompt box will appear for manual input
// // "build": "yarn build:test", // (Optional) Build command to execute, open this for front-end projects
// "compress": false, // Whether to compress and upload, and remotely decompress (account needs to support ssh login, the system will automatically detect if it is supported, if not, it will not compress and upload), default is false
// "remote_unpacked": true, // Whether to remotely decompress after compressed upload, default is true for ssh, false for others
// "delete_remote_compress": true, // Whether to delete the remote compressed file after compressed upload, default is true for ssh, false for others
// "delete_local_compress": true, // Whether to delete the local compressed file after compressed upload, default is true
// "upload_to_root": false, // If distPath configuration directory has only one, upload to the root directory of remotePath, generally used for deploying front-end code, default is false
// "deleteRemote": false, // Whether to delete the remote distPath configuration directory before uploading, generally used for cleaning up front-end deployment code, default is false
// "distPath": [], // (Optional) Local directory to upload, supports string or array, default is to upload the root directory
// "remotePath": "/www/wwwroot/test", // (sftp, ssh configuration) Upload server address
// "excludePath": [], // (Optional) Files and directories to exclude from upload in the current environment, will be merged with the plugin configuration excludePath, when the plugin configuration uses gitignore, it will be merged with the .gitignore configuration file
// "downloadPath": "", // (Optional) Download path, default is the current project root directory, used for manually downloading files or folders, can specify the download address
// "downloadExcludePath": [],// (Optional) Files and directories to exclude from download
// "default": false // Whether it is the default environment, when true, you can use the right-click menu to quickly upload files or folders, compare remote files, default is false
// }
}