Merge branch 'xvar/remove-tui-as-default' into 'master'

Changed veloren-server-cli to run in interactive basic mode as default

See merge request veloren/veloren!2599
This commit is contained in:
Marcel 2021-07-15 08:15:40 +00:00
commit 7295a2f071
4 changed files with 6 additions and 8 deletions

View File

@ -6,9 +6,9 @@ rustflags = [
[alias]
csv-export = "run --manifest-path common/Cargo.toml --features=bin_csv --bin csv_export"
csv-import = "run --manifest-path common/Cargo.toml --features=bin_csv --bin csv_import"
test-server = "run --bin veloren-server-cli --no-default-features -- -b"
test-server = "run --bin veloren-server-cli --no-default-features"
tracy-server = "-Zunstable-options run --bin veloren-server-cli --no-default-features --features tracy,simd --profile no_overflow"
tracy-world-server = "-Zunstable-options run --bin veloren-server-cli --features tracy,simd --profile no_overflow -- -b"
tracy-world-server = "-Zunstable-options run --bin veloren-server-cli --features tracy,simd --profile no_overflow"
test-voxygen = "run --bin veloren-voxygen --no-default-features --features simd,egui-ui"
tracy-voxygen = "-Zunstable-options run --bin veloren-voxygen --no-default-features --features tracy,simd,egui-ui --profile no_overflow"
server = "run --bin veloren-server-cli"

View File

@ -22,4 +22,3 @@ WORKDIR /opt
ENV RUST_BACKTRACE=full
ENTRYPOINT ["/opt/veloren-server-cli"]
CMD ["-b"]

View File

@ -99,15 +99,14 @@ pub enum ArgvCommand {
)]
pub struct ArgvApp {
#[structopt(long, short)]
/// Disables the tui
pub basic: bool,
/// Enables the tui
pub tui: bool,
#[structopt(long, short)]
/// Doesn't listen on STDIN
///
/// Useful if you want to send the server in background, and your kernels
/// terminal driver will send SIGTTIN to it otherwise. (https://www.gnu.org/savannah-checkouts/gnu/bash/manual/bash.html#Redirections) and you dont want to use `stty -tostop`
/// or `nohub` or `tmux` or `screen` or `<<< \"\\004\"` to the programm.
/// This implies `-b`.
/// or `nohub` or `tmux` or `screen` or `<<< \"\\004\"` to the program.
pub non_interactive: bool,
#[structopt(long)]
/// Run without auth enabled

View File

@ -36,7 +36,7 @@ const TPS: u64 = 30;
fn main() -> io::Result<()> {
let app = ArgvApp::from_args();
let basic = app.basic || app.command.is_some();
let basic = !app.tui || app.command.is_some();
let noninteractive = app.non_interactive;
let no_auth = app.no_auth;
let sql_log_mode = app.sql_log_mode;