Skip to content

Commit

Permalink
release v0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
aisuneko committed May 7, 2022
1 parent 899db55 commit c4c057a
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 8 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# Changelog

v0.1 (2022/05/02) - Initial release
v0.2 (2022/05/07)

- Add flag to disable LXC-only info

- Fix LXC-only info menubar item still showing when no CTs are present

- Minor bug fixes and improvements

v0.1 (2022/05/02)

- Initial release
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,13 @@ A htop-like status monitor for Proxmox VE servers, powered by python curses, wit
## Screenshot
![connected to my own PVE server](screenshot.jpg)
## Installation
Install dependencies: `pip install proxmoxer`

Then install: `pip install proxcat`
`pip install proxmoxer proxcat`

Or, clone repository and run `pip install .`.

## Usage
1. On your PVE server, create an API token in WebUI under Datacenter -> Permissions -> API Tokens. Remember to deselect "Priviledge Separation" (for this reason, it is recommended to use the app with a dedicated low-level user instead of root).
2. Create a config file. The app will look for `config.ini` under
1. On your PVE server, create an API token in WebUI under Datacenter -> Permissions -> API Tokens. Remember to deselect "Priviledge Separation". For security concerns, it is recommended to use it with a dedicated low-level user - for example, one with the "PVEAuditor" role assigned - instead of root or other administrators.
2. Create a config file. `proxcat` will look for `config.ini` under
- `$XDG_CONFIG_HOME/proxcat/` or
- `~/.proxcat/`

Expand All @@ -23,7 +21,7 @@ Or, clone repository and run `pip install .`.
[Account]
# address of PVE host
Host =
# Username (format: <username>@<realm>)
# Username (format: <username>@<realm)
User =
# name of your token
TokenName =
Expand Down
2 changes: 1 addition & 1 deletion src/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = 0.1
__version__ = 0.2

0 comments on commit c4c057a

Please sign in to comment.