this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

1# ebil - ebil.club cli 2 3## usage 4 5push your site files to ebil.club: 6 7```bash 8ebil push --site robin.ebil.club dist/ 9``` 10 11pull your site from ebil.club to a local directory: 12 13```bash 14ebil pull --site robin.ebil.club 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_SITE="robin.ebil.club"` | `--site robin.ebil.club` | 44| `EBIL_PATH="dist/"` | `--path dist/` | 45 46## note 47 48specify options _before_ regular arguments.