🎯Simple light vue project that checkup services by pinging them (Demo page).
npm install
You can add your services in this file named config.json.
for every service you have three parameter to indicate:
- endpoint: endpoint to test (required).
- isWebsite: if it's a website or not (required).
- port: port to test (optional).
{
"retryInterval": 30, // in seconds
"services": {
"Personal website": {
"endpoint": "https://aminebioudi.com",
"isWebsite": true,
"port": 443
},
"Google": {
"endpoint": "https://google.com",
"isWebsite": true
},
"RandomApi": {
"endpoint": "https://od-api-demo.oxforddictionaries.com/api/v1/filters",
"isWebsite": false
}
},
"jiraCloud": {
"enabled": false
}
}
npm run serve
npm run build
npm run lint