Files
cloudron-box/syslog/service.js

17 lines
253 B
JavaScript
Raw Normal View History

2023-04-14 19:31:45 +02:00
#!/usr/bin/env node
'use strict';
const server = require('./server.js');
const options = {
logFolder: process.argv[2] || '/home/yellowtent/platformdata/logs',
port: 2514
};
async function main() {
await server.start(options);
}
main();