UNPKG

git-to-k8s

Version:

Small tool to automate the git to url flow on k8s

9 lines (5 loc) 168 B
'use strict' const express = require('express') const app = express() app.get('/', (req, res) => res.json({ err_no: 0, message: 'working well' })); app.listen(3000)