chapmandu
07/25/2023, 4:03 AMbox install commandbox-fusionreactor
in production.. Interested to hear your approach. Thanks in advance..paul
07/25/2023, 7:21 AMchapmandu
07/25/2023, 7:26 AMchapmandu
07/25/2023, 7:27 AMdougcain
07/25/2023, 8:25 AM# Only add modules for cf >= 2021
RUN if [ "$engine" != "2018" ]; then box cfpm install caching,document,pdf,image,mail,mysql,scheduler,spreadsheet,zip,redissessionstorage; fi
dougcain
07/25/2023, 8:28 AMbdw429s
07/25/2023, 2:35 PMbdw429s
07/25/2023, 2:35 PMbdw429s
07/25/2023, 2:35 PMbdw429s
07/25/2023, 2:36 PMchapmandu
07/26/2023, 12:55 AMbdw429s
07/26/2023, 3:12 AMbdw429s
07/26/2023, 3:13 AM${}
placeholders in there, or use box_server_setting_here
env vars in prod to overridechapmandu
07/26/2023, 3:13 AMbdw429s
07/26/2023, 3:13 AMbdw429s
07/26/2023, 3:14 AMbox_server_fusionreactor_licenseKey=xxxxx
env var will do thatbdw429s
07/26/2023, 3:14 AM{
"fusionreactor": {
"licenseKey": "${FR_KEY}"
}
}
and just set FR_KEY
as an env var (defaults to empty string if it doesn't exist)chapmandu
07/26/2023, 3:15 AMbdw429s
07/26/2023, 3:16 AMfusionreactor.enable
flag too if you really want it 100% gonebdw429s
07/26/2023, 3:17 AMbdw429s
07/26/2023, 3:18 AMchapmandu
07/26/2023, 3:18 AM"fusionreactor": {
"enable": "${FUSIONREACTOR_ENABLE:true}"
}
bdw429s
07/26/2023, 3:18 AMbdw429s
07/26/2023, 3:19 AMbdw429s
07/26/2023, 3:19 AMbdw429s
07/26/2023, 3:19 AMbdw429s
07/26/2023, 3:19 AMbdw429s
07/26/2023, 3:20 AM.env
file to simulate the env vars which come from our docker stack and/or docker secrets on stage/prod.bdw429s
07/26/2023, 3:21 AMchapmandu
07/26/2023, 3:24 AMbdw429s
07/26/2023, 3:27 AMbdw429s
07/26/2023, 3:27 AMbdw429s
07/26/2023, 3:28 AMwe have an STAGE env var with either a "stg" or "prod" value☝️ This is also the most confusing thing I've ever heard, lol
chapmandu
07/26/2023, 3:29 AMbdw429s
07/26/2023, 3:29 AMthis_is_production
and set it to lol_JK
on dev 😁chapmandu
07/26/2023, 3:30 AMbdw429s
07/26/2023, 3:30 AMchapmandu
07/26/2023, 3:31 AMbdw429s
07/26/2023, 3:31 AMbdw429s
07/26/2023, 3:31 AMchapmandu
07/26/2023, 3:35 AMchapmandu
07/26/2023, 3:41 AMwe have an STAGE env var with either a "stg" or "prod" valuenot exactly... DEPLOY_STAGE = [ci | staging | uat | production]
bdw429s
07/26/2023, 3:46 AMenvironment
bdw429s
07/26/2023, 3:46 AMchapmandu
07/26/2023, 4:13 AM