-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
36 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
VERSION=1.0.1 | ||
VERSION=1.0.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,4 +20,28 @@ tar xvzf miniboard-*.tar.gz | |
cd miniboard | ||
sudo ./install.sh | ||
``` | ||
<br> | ||
|
||
# Usage | ||
## Systemd as user (recommended) | ||
Enable and start service, replace `MYUSER` with your username | ||
```sh | ||
sudo systemctl enable [email protected] | ||
sudo systemctl start [email protected] | ||
``` | ||
Web GUI will be available at [http://0.0.0.0:8849](http://0.0.0.0:8849) | ||
Config files are stored at `/home/MYUSER/.config/miniboard/` | ||
|
||
|
||
## Systemd as root | ||
Enable and start service | ||
```sh | ||
sudo systemctl enable miniboard.service | ||
sudo systemctl start miniboard.service | ||
``` | ||
Web GUI will be available at [http://0.0.0.0:8849](http://0.0.0.0:8849) | ||
Config files are stored at `/etc/miniboard/` | ||
|
||
## From command line | ||
Just run `miniboard`. Be mindful of the config files paths listed in [options](https://github.com/aceberg/miniboard#options) section. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters