Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
27e85e6
it works
Milo123459 Nov 26, 2025
ab64278
remove useless comment
Milo123459 Nov 26, 2025
a852ba1
Merge branch 'master' into milo/source-when-new-env
Milo123459 Dec 10, 2025
627abe1
fix conflicts, make it work again
Milo123459 Dec 10, 2025
1ea4b44
update schema
Milo123459 Jan 6, 2026
a75bba9
cli side work is becoming a lot closer
Milo123459 Jan 9, 2026
4f4c1de
organise environment command
Milo123459 Jan 9, 2026
dee0767
more cleanup
Milo123459 Jan 9, 2026
a50e2b2
todos
Milo123459 Jan 9, 2026
898f362
Merge branch 'master' into milo/source-when-new-env
Milo123459 Jan 9, 2026
7d52118
filter out old regions from scale non-interactively
Milo123459 Jan 13, 2026
737f2bb
add non-interactive options for everything
Milo123459 Jan 13, 2026
60cadf6
make trait variable handling more consistent for things that require …
Milo123459 Jan 13, 2026
98af6ba
begin work on porting to other way non-interactively
Milo123459 Jan 16, 2026
4541fdb
it works
Milo123459 Jan 16, 2026
af9a5f8
add all interactive options and fix issue with --service flag in scal…
Milo123459 Jan 16, 2026
5c09b40
add build command and start command and fix some parsing errors in no…
Milo123459 Jan 16, 2026
61a9d64
Merge upstream/master into milo/source-when-new-env
Milo123459 Jan 16, 2026
e9064bf
add placeholders for env being duplicated
Milo123459 Jan 17, 2026
5c4f630
add edit command
Milo123459 Jan 18, 2026
99825d7
simplify and ux
Milo123459 Jan 18, 2026
9912d16
address comments
Milo123459 Jan 19, 2026
88fbfe3
remove interactive auto update
Milo123459 Jan 19, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 66 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,13 @@ tokio-util = "0.7.15"
similar = "2.7.0"
pathdiff = "0.2.3"
pastey = "0.1.1"
derive_more = { version = "2.1.1", features = ["display"] }
nix = { version = "0.30.1", features = ["signal"] }
fs2 = "0.4.3"
async-trait = "0.1.89"
ratatui = "0.29"
scopeguard = "1.2"
schemars = "0.8"

[profile.release]
lto = "fat"
Expand Down
2 changes: 1 addition & 1 deletion src/commands/add.rs
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ fn prompt_variables(variables: Vec<Variable>) -> Result<Option<BTreeMap<String,
}
if variables.is_empty() {
return Ok(Some(
prompt::prompt_variables()?
prompt::prompt_variables(None)?
.into_iter()
.map(|v| (v.key, v.value))
.collect(),
Expand Down
Loading
Loading