mirror of
https://github.com/djhackersdev/minime.git
synced 2026-08-27 21:14:00 -05:00
Wire up Project Diva
This commit is contained in:
@@ -5,8 +5,9 @@ import net = require("net");
|
||||
|
||||
import aimedb from "./aimedb";
|
||||
import billing from "./billing";
|
||||
import startup from "./startup";
|
||||
import chunithm from "./chunithm";
|
||||
import diva from "./diva";
|
||||
import startup from "./startup";
|
||||
|
||||
const tls = {
|
||||
cert: fs.readFileSync("pki/server.pem"),
|
||||
@@ -16,6 +17,8 @@ const tls = {
|
||||
net.createServer(aimedb).listen(22345);
|
||||
http.createServer(startup).listen(80);
|
||||
https.createServer(tls, billing).listen(8443);
|
||||
|
||||
http.createServer(chunithm).listen(9000);
|
||||
http.createServer(diva).listen(9001);
|
||||
|
||||
console.log("Startup OK");
|
||||
|
||||
@@ -7,6 +7,7 @@ import { hostname } from "os";
|
||||
const services = new Map();
|
||||
|
||||
services.set("SDBT", 9000); // Chunithm
|
||||
services.set("SBZV", 9001); // Project Diva Future Tone
|
||||
|
||||
const app = express();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user