verdaccio/bin/sinopia

47 lines
1.5 KiB
Plaintext
Raw Normal View History

2013-05-22 08:48:04 +02:00
#!/usr/bin/env node
2013-06-13 16:21:14 +02:00
var pkg_file = '../package.yaml';
2013-05-31 08:26:11 +02:00
var fs = require('fs');
var yaml = require('js-yaml');
2013-05-22 08:48:04 +02:00
var commander = require('commander');
2013-05-31 08:26:11 +02:00
var server = require('../lib/index');
2013-06-08 03:16:28 +02:00
var crypto = require('crypto');
2013-06-13 16:21:14 +02:00
var pkg = require(pkg_file);
2013-05-22 08:48:04 +02:00
commander
2013-09-24 06:40:46 +02:00
.option('-l, --listen <[host:]port>', 'host:port number to listen on (default: localhost:4873)')
2013-06-13 16:21:14 +02:00
.option('-c, --config <config.yaml>', 'use this configuration file (default: ./config.yaml)')
2013-05-31 08:26:11 +02:00
.version(pkg.version)
2013-05-22 08:48:04 +02:00
.parse(process.argv);
var config, config_path;
2013-06-08 03:16:28 +02:00
if (commander.config) {
config_path = commander.config;
config = yaml.safeLoad(fs.readFileSync(config_path, 'utf8'));
2013-06-08 03:16:28 +02:00
} else {
config_path = './config.yaml';
2013-06-13 16:21:14 +02:00
try {
config = yaml.safeLoad(fs.readFileSync(config_path, 'utf8'));
2013-06-13 16:21:14 +02:00
} catch(err) {
var created_config = require('../lib/config_gen')();
config = yaml.safeLoad(created_config.yaml);
console.log('starting with default config, use user: "%s", pass: "%s" to authenticate', created_config.user, created_config.pass);
fs.writeFileSync(config_path, created_config.yaml);
2013-06-08 03:16:28 +02:00
}
}
if (!config.user_agent) config.user_agent = 'Sinopia/'+pkg.version;
if (!config.self_path) config.self_path = config_path;
2013-06-08 03:16:28 +02:00
2013-09-24 06:40:46 +02:00
var hostport = commander.listen || config.listen || '4873';
hostport = hostport.split(':');
2013-05-31 08:26:11 +02:00
if (hostport.length < 2) {
hostport = [undefined, hostport[0]];
2013-05-22 08:48:04 +02:00
}
if (hostport[0] == null) {
hostport[0] = 'localhost';
}
2013-06-08 03:16:28 +02:00
server(config).listen(hostport[1], hostport[0]);
console.log('Server is listening on http://%s:%s/', hostport[0], hostport[1]);
2013-05-22 08:48:04 +02:00