-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
OPSEXP-2716: implement instructions in repo to install AMPS (#9)
Co-authored-by: Paweł Maciusiak <[email protected]>
- Loading branch information
Showing
11 changed files
with
123 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
*.zip | ||
*.amp | ||
dist | ||
*.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Alfresco repository AMPs | ||
|
||
Place here your Alfresco module Packages (AMPs) to be installed in the Alfresco | ||
repository. | ||
|
||
AMP packages should have the `.amp` extension and stick to the Alfresco module | ||
packaging format as described in the [Alfresco | ||
documentation](https://docs.alfresco.com/content-services/latest/develop/extension-packaging/#alfresco-module-package-amp). | ||
|
||
The [in-process Alfresco | ||
SDK](https://docs.alfresco.com/content-services/latest/develop/sdk/) provides a | ||
way to build well structured AMPs. | ||
|
||
> Note that AMPs are not the recommanded way to extend Alfresco. You should | ||
> prefer using the Alfresco SDK to build your extensions as JARs even better, | ||
> use the [out-of-process Alfresco | ||
> SDK](https://docs.alfresco.com/content-services/latest/develop/oop-sdk/) to | ||
> build Docker images with your extensions. | ||
By default the `scripts/fetch-amps.sh` script will fetch the following AMPs from the Alfresco Nexus repository: | ||
|
||
* alfresco-share-services | ||
* alfresco-aos-module | ||
* alfresco-device-sync-repo | ||
* alfresco-googledrive-repo-enterprise | ||
* alfresco-content-services-distribution | ||
|
||
You can replace those, remove them to keep only the ones you need or add more. | ||
Be careful though as some AMPs may depend on one another (e.g. | ||
`googldrive-repo` depends on `alfresco-share-services`). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Alfresco repository distribution | ||
|
||
Place here the version of Alfresco Content Services distribution you want to | ||
use in your Docker image. | ||
Distribution file must be a ZIP file with the expected structure of an Alfresco | ||
Content Services distribution. | ||
|
||
```tree | ||
keystore/ | ||
|_metadata-keystore/ | ||
bin/ | ||
licenses/ | ||
|_3rd-party/ | ||
web-server/ | ||
|_webapps/ | ||
|_shared/ | ||
|_classes/ | ||
|_alfresco/ | ||
|_conf/ | ||
|_Catalina/ | ||
|_localhost/ | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters