feat(web): add app constants

This commit is contained in:
Denis Gukov 2024-04-27 14:51:02 +05:00
parent c74fac3cb4
commit 528ba19751

View File

@ -74,9 +74,30 @@ export const EXTRACT_VALUE_BODY_DATA_TYPE_ICONS = {
};
export const APP_ICONS = {
'': {},
'': {
icon: 'mdi-ansible',
color: 'black',
darkColor: 'white',
},
terraform: {
icon: 'mdi-terraform',
color: '#7b42bc',
darkColor: '#7b42bc',
},
bash: {
icon: 'mdi-bash',
color: 'black',
darkColor: 'white',
},
};
export const APP_TITLE = {
'': '',
'': 'Ansible Playbook',
terraform: 'Terraform Code',
bash: 'Bash Script',
};
export const APP_INVENTORY_TITLE = {
'': 'Ansible Inventory',
terraform: 'Terraform Workspace',
};