Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
# Process env vars override .env if both are set.

MIRRORSTACK_API_URL=http://localhost:8081
MIRRORSTACK_APPS_API_URL=http://localhost:8082
MIRRORSTACK_WEB_URL=http://localhost:3000
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
/target
dist/
.env
.plan/
109 changes: 104 additions & 5 deletions Cargo.lock

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

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ anyhow = "1"
thiserror = "2"
tempfile = "3"
dotenvy = "0.15"
dialoguer = { version = "0.11", default-features = false }
console = "0.15"
indicatif = "0.17"

[dev-dependencies]
mockito = "1.6"
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,11 @@ Pre-built releases (brew, scoop, deb) coming with the next milestone.
```bash
mirrorstack login # Sign in via OAuth (PKCE)
mirrorstack whoami # Print the currently signed-in user
mirrorstack module init # Register a new module on the platform
mirrorstack --help # Show help
mirrorstack --version # Show CLI version
```

Module scaffolding (`app module init`) is tracked separately and lands
in a follow-up PR.

## Local development

Build:
Expand Down
Loading
Loading