UNPKG

@medflyt/test-db-service

Version:

Developer tool to instantly provision test PostgreSQL databases from a template

15 lines 392 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.main = void 0; const express = require("express"); const PORT = 8585; function main() { console.log("Hi"); const app = express(); app.listen(PORT, () => { console.log("Listening on port " + PORT); }); } exports.main = main; main(); //# sourceMappingURL=TemporaryPostgresServer.js.map