UNPKG

netflix-conductor-utilities

Version:
17 lines (13 loc) 284 B
const url = process.env.URL || 'http://localhost:8080'; const apiPath = '/api/'; const apiEndpoint = url + apiPath; const taskType = 'lib_test'; const wfName = `test_wf_${taskType}`; const config = { taskType, wfName, url, apiPath, apiEndpoint, }; export default config;