Align enso remote paths with enso-deploy conventions

Match ENSO_REMOTE_ROOT, ENSO_SSH_HOST-style aliases, and default
data/dossiers-permanents path from enso deploy examples.
This commit is contained in:
Nicolas Cantu 2026-04-03 18:07:00 +02:00
parent a7b5998f61
commit 047700fab0

View File

@ -47,29 +47,44 @@
"remote_data_access": {
"environments": {
"test": {
"ssh_host_alias": "enso-test-app",
"ssh_host_alias": "test",
"remote_app_root": "/home/ncantu/enso",
"remote_data_directories": [
{
"role": "docv_storage",
"path_on_server": "/var/lib/enso/test/data"
"role": "enso_monorepo_clone",
"path_on_server": "/home/ncantu/enso"
},
{
"role": "docv_dp_git_data",
"path_on_server": "/home/ncantu/enso/data/dossiers-permanents"
}
]
},
"pprod": {
"ssh_host_alias": "enso-pprod-app",
"ssh_host_alias": "pprod",
"remote_app_root": "/home/ncantu/enso",
"remote_data_directories": [
{
"role": "docv_storage",
"path_on_server": "/var/lib/enso/pprod/data"
"role": "enso_monorepo_clone",
"path_on_server": "/home/ncantu/enso"
},
{
"role": "docv_dp_git_data",
"path_on_server": "/home/ncantu/enso/data/dossiers-permanents"
}
]
},
"prod": {
"ssh_host_alias": "enso-prod-app",
"ssh_host_alias": "prod",
"remote_app_root": "/home/ncantu/enso",
"remote_data_directories": [
{
"role": "docv_storage",
"path_on_server": "/var/lib/enso/prod/data"
"role": "enso_monorepo_clone",
"path_on_server": "/home/ncantu/enso"
},
{
"role": "docv_dp_git_data",
"path_on_server": "/home/ncantu/enso/data/dossiers-permanents"
}
]
}