Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

Commit

Permalink
[cli] simplify generated default config
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed May 20, 2023
1 parent d0ed7b7 commit b5ee84d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,6 @@ service "demo" {
env = {
"GITHUB_DOMAIN" = "github.com"
}
autostart = true
autorestart = false
namespace = "demo_namespace"
stdout = "/tmp/demo-stdout.log"
stderr = "/tmp/demo-stderr.log"
}
Expand Down
4 changes: 2 additions & 2 deletions src/cmd/new.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ pub fn execute_new(cfg_format: ConfigFormat) {
autorestart: None,
namespace: None,
port: None,
stdout: None,
stderr: None,
stdout: Some("/tmp/demo-stdout.log".to_string()),
stderr: Some("/tmp/demo-stderr.log".to_string()),
wait_for: None,
build: None,
r#use: None,
Expand Down

0 comments on commit b5ee84d

Please sign in to comment.