Skip to content
Merged
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
17 changes: 11 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,20 @@ make build

### Configure

Create `~/.platform.d/config.toml` with a server profile:
Create `~/.platform.d/config.ini` with a server profile, and set it as the
default profile so it's used automatically without passing `--profile`:

```toml
["profile default"]
host = "platform.example.com"
```ini
[application]
default_profile = local

[profile local]
host = platform.example.com
port = 443
use_tls = true
username = "admin"
password = "your-password"
verify = true
username = admin
password = your-password
```

### Use
Expand Down