A cli tool to quickly create and manage nginx server blocks.
https://up.js.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
894 B
35 lines
894 B
'use strict';
|
|
|
|
const { EOL } = require('os');
|
|
|
|
const shell = require('shelljs');
|
|
const chalk = require('chalk');
|
|
|
|
function requirements() {
|
|
|
|
// Detect Linux or BSD
|
|
const isLin = /^linux|^bsd/.test(process.platform);
|
|
|
|
// Throw if OS is not Linux or BSD.
|
|
// This should be changed to throw if not Debian based distro.
|
|
// Eventually, we can add more exceptions as `up` handles more cases.
|
|
if(!isLin) {
|
|
shell.echo(EOL +
|
|
"This is not a Linux or freeBSD distribution. " +
|
|
"This tool not written for this distro. " +
|
|
"Please raise an issue at " +
|
|
chalk.cyan("https://github.com/codefeathers/up-serve") +
|
|
" if you want `up` to be ported for your distro");
|
|
shell.exit(1);
|
|
}
|
|
|
|
// Throw if Nginx is not found
|
|
if (!shell.which('nginx')) {
|
|
shell.echo(
|
|
'I need nginx to work. Install nginx first. https://nginx.org/');
|
|
shell.exit(1);
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = requirements;
|
|
|