CMS configuration
How do I connect to the Content Management System (CMS)?
AXIS PM is the VOLT's CMS that feeds Deltatre Apps.
Deltatre Apps connect to the CMS through two API endpoints:
apiUrlsVoltCore: For getting dynamic assets (e.g., rows, pages, search).cdnUrlsVoltCore: For getting cachable assets (e.g., logos).
Where do I set the connection to AXIS PM?
Set the Deltatre Apps apiUrlsVoltCore and cdnUrlsVoltCore fields in the build.gradle file.
Each variable is an array of URLs per environment, from development to production:
//VOLT URLS
apiUrlsVoltCore = [
"dev" : "https://dev-my-api.com",
"stable" : "https://stable-my-api.com",
"staging": "https://stg-my-api.com",
"prod" : "https://prod-my-api.com",
]
cdnUrlsVoltCore = [
"dev" : "https://dev-my-cdn.com",
"stable" : "https://stable-my-cdn.com",
"staging": "https://stg-my-cdn.com",
"prod" : "https://prod-my-cdn.com",
]