this repo has no description

doc: add readme

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