forked from ilscipio/scipio-erp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgit-addons-config
70 lines (66 loc) · 4.2 KB
/
git-addons-config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# SCIPIO-ERP git-addons script configuration
#
# NOTE: This file is intended to be committed to version control (git), for shared project config.
# If you need machine/developer-specific config, you can create a file named "git-addons-config-local"
# beside this one and put your definitions there instead.
# Enterprise addons base folder [INPUT PURCHASED ADDONS BASE SSH ADDRESS HERE]
# Please set this to the address of the Ilscipio servers provided to you upon addon purchase.
# This will be an ssh:// address and end with /scipio-erp/ (including trailing slash).
# You will have to commit the change locally (git add git-addons-config && git commit -m "Updated git-addons-config").
if [ -z "${SCIPIO_ADDONS_URL_EE}" ]; then
SCIPIO_ADDONS_URL_EE=""
fi
# Suffix added just before ".git" to all EE repo URLs
if [ -z "${SCIPIO_ADDONS_URL_SUFFIX_EE}" ]; then
SCIPIO_ADDONS_URL_SUFFIX_EE=""
fi
# Community addons base folder
# This is used for addons that are public on Github.
# Maintained by Ilscipio [DO NOT MODIFY]
if [ -z "${SCIPIO_ADDONS_URL_CE}" ]; then
SCIPIO_ADDONS_URL_CE="https://github.com/ilscipio/addons-"
fi
# Suffix added just before ".git" to all CE repo URLs
if [ -z "${SCIPIO_ADDONS_URL_SUFFIX_CE}" ]; then
SCIPIO_ADDONS_URL_SUFFIX_CE=""
fi
# Suffix added just before ".git" to all repo URLs *if* no more specific suffix (from above)
if [ -z "${SCIPIO_ADDONS_URL_SUFFIX}" ]; then
SCIPIO_ADDONS_URL_SUFFIX=""
fi
# Addon definitions and target directories.
# Maintained by Ilscipio [DO NOT MODIFY - if you need custom definitions, override these further below (to avoid merge conflicts)]
declare -A SCIPIO_ADDON_MAP
# FORMAT:
# SCIPIO_ADDON_MAP[addon-name]="[addon-name] [addon-directory] [ce|ee] [addon-repo-name-or-full-url] [branch-prefix]"
# * addon-name - name of the addon specified on the command line (must be same as array key)
# * addon-directory - filesystem target component directory for the addon
# * [ce|ee] - distribution type, community or enterprise (used to select the correct SCIPIO_ADDONS_URL_* base url)
# * addon-repo-name-or-full-url - addon repo name or absolute url, with or without .git extension
# * branch-prefix - prefix of the branch, omitting the trailing /[master|2.x|...]; use '/' for no prefix
SCIPIO_ADDON_MAP[accountingat]="accountingat addons/accountingat ee accountingat /"
SCIPIO_ADDON_MAP[accountingde]="accountingde addons/accountingde ee accountingde /"
SCIPIO_ADDON_MAP[accountingde-skr03]="accountingde-skr03 addons/accountingde-skr03 ee accountingde-skr03 /"
SCIPIO_ADDON_MAP[accountinges]="accountinges addons/accountinges ee accountinges /"
SCIPIO_ADDON_MAP[angular-shop]="angular-shop addons/angular-shop ce angular-shop /"
SCIPIO_ADDON_MAP[angular-theme]="angular-theme themes/angular ee angular-theme /"
SCIPIO_ADDON_MAP[auth-cas-client]="auth-cas-client addons/auth-cas-client ee auth-cas-client /"
SCIPIO_ADDON_MAP[auth-cas-server]="auth-cas-server addons/auth-cas-server ee auth-cas-server /"
SCIPIO_ADDON_MAP[auth-facebook]="auth-facebook addons/auth-facebook ee auth-facebook /"
SCIPIO_ADDON_MAP[auth-google]="auth-google addons/auth-google ee auth-google /"
SCIPIO_ADDON_MAP[auth-linkedin]="auth-linkedin addons/auth-linkedin ee auth-linkedin /"
SCIPIO_ADDON_MAP[auth-twitter]="auth-twitter addons/auth-twitter ee auth-twitter /"
SCIPIO_ADDON_MAP[bootstrap-theme]="bootstrap-theme themes/bootstrap ee bootstrap-theme /"
SCIPIO_ADDON_MAP[camel]="camel addons/camel ee camel /"
SCIPIO_ADDON_MAP[data-categorytree]="data-categorytree addons/data-categorytree ee data-categorytree /"
SCIPIO_ADDON_MAP[ignite-admin-theme]="ignite-admin-theme themes/ignite-admin ee ignite-admin-theme /"
SCIPIO_ADDON_MAP[ignite-shop-theme]="ignite-shop-theme themes/ignite-shop ee ignite-shop-theme /"
SCIPIO_ADDON_MAP[lightning]="lightning addons/lightning ee lightning /"
SCIPIO_ADDON_MAP[paypal]="paypal addons/paypal ee paypal /"
SCIPIO_ADDON_MAP[projectmgr]="projectmgr addons/projectmgr ee projectmgr /"
SCIPIO_ADDON_MAP[redsys]="redsys addons/redsys ee redsys /"
SCIPIO_ADDON_MAP[shopde]="shopde addons/shopde ee shopde /"
SCIPIO_ADDON_MAP[vue-theme]="vue-theme themes/vue ee vue-theme /"
# OVERRIDES
# If you need to override any of the above definitions (for whatever reason, normally not),
# you may do so below this line.