-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question: Downsync from AEMaaCS Instance #219
Comments
yes, use: sh aemw package create -A --pid group:name:version --filter-file filter.xml
just define them with any other prefix than 'local_' for example 'remote_', 'integration_', etc instance:
# Full details of local or remote instances
config:
integration_author:
http_url: http://x.x.x.x:4502
user: admin
password: pwd
integration_publish:
http_url: http://y.y.y.y:4503
user: admin
password: pwd or use ad-hoc definitions sh aemw package deploy --instance-url=admin:[email protected]:4502 or ENVS=integration_author=admin:[email protected]:4502,integration_publish=admin:[email protected]:4503
sh aemw package deploy --instance-url=$ENVS -A # only to author
sh aemw package deploy --instance-url=$ENVS -P # only to publish
as far as I know only AEM author is reachable but via auth using bearer token; this is supported in predecessor of AEMC (https://github.com/wttech/gradle-aem-plugin) but not yet in AEMC. I just raised a ticket to cover that: #220 ; basically to copy cloud to/from cloud instances Adobe developed few tools and documented these approaches. don't hesitate to find them ;) |
Thank you very much for the detailed response! I will try it as you described. |
I have the following questions:
The text was updated successfully, but these errors were encountered: