Add shebang

This commit is contained in:
Daniel Bulant 2020-04-14 10:35:40 +02:00 committed by GitHub
parent 4c45f0a0e5
commit af7613ab86
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,3 +1,4 @@
#!/usr/bin/env node
const express = require("express");
const fs = require("fs");
const mysql = require("mysql");
@ -65,4 +66,4 @@ app.listen(8877, "localhost", () => {
if(!apiOnly)
opn('http://localhost:8877/view');
console.log("Listening on port 8877");
});
});