2017-06-07 17:36:44 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
exports = module.exports = {
|
2017-07-08 22:19:47 +00:00
|
|
|
version: 'Alpha',
|
2017-06-07 17:36:44 +00:00
|
|
|
// List of user roles
|
|
|
|
userRoles: ['guest', 'user', 'admin'],
|
|
|
|
'scriptEngine' : {
|
2017-07-07 16:27:41 +00:00
|
|
|
'host' : process.env.SCRIPT_ENGINE_HOST || 'localhost',
|
|
|
|
'user' : process.env.SCRIPT_ENGINE_USER || 'root',
|
2017-07-08 23:41:53 +00:00
|
|
|
// This is the default root password for local container set during docker container rebuild
|
2017-07-07 16:27:41 +00:00
|
|
|
'password' : process.env.SCRIPT_ENGINE_PASSWORD || 'P@ssw0rd@123'
|
2017-07-08 18:32:27 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
paths: {
|
2017-07-08 23:41:53 +00:00
|
|
|
ansible_projects: '/opt/ansible-projects',
|
|
|
|
ansible_projects_arhive: '/archive', // relative to projects folder
|
|
|
|
ansible_custom_api_local: './helpers/AnsibleAPI.py',
|
|
|
|
ansible_custom_api_remote: '/tmp/AnsibleAPI.py',
|
|
|
|
ansible_dir_tree_local: './helpers/dir_tree.py',
|
|
|
|
ansible_dir_tree_remote: '/tmp/dir_tree.py',
|
|
|
|
ansible_list_tasks_json_local: './helpers/list_tasks_json.py',
|
|
|
|
ansible_list_tasks_json_remote: '/tmp/list_tasks_json.py',
|
|
|
|
ansible_project_library: '/library', // relative to project folder
|
|
|
|
ansible_project_roles: '/roles', // relative to project folder
|
|
|
|
|
2017-06-07 17:36:44 +00:00
|
|
|
}
|
|
|
|
};
|