this repo has no description
1# ebil - ebil.club cli
2
3## usage
4
5push your site files to ebil.club:
6
7```bash
8ebil push --user robin dist/
9```
10
11pull your site from ebil.club to a local directory:
12
13```bash
14ebil pull --user robin site/
15```
16
17## installation
18
19simply install using make:
20
21```bash
22sudo make install
23```
24
25or install for user:
26
27```bash
28PREFIX="$HOME/.local" make install
29```
30
31or run using :sparkles: _nix_ :sparkles: :
32
33```bash
34nix run git+https://codeberg.org/comfysage/ebil.git --
35```
36
37## env
38
39you can set certain options using environment variables.
40
41| env | option |
42| ----------------------------------------------------- | ---------------------------------------- |
43| `EBIL_USER="robin.ebil.club"` | `--user robin` |
44| `EBIL_PATH="dist/"` | `push --from dist/`<br>`pull --to dist/` |
45| `EBIL_PATH_REMOTE="root"` | `push --to root`<br>`pull --from root` |
46| `EBIL_HOST="ebil.club"` | |
47| `EBIL_REMOTE="/var/ebil.club/${user}/${path_remote}"` | |
48
49## note
50
51specify options _before_ regular arguments.