tangled
alpha
login
or
join now
robinwobin.dev
/
ebil
1
fork
atom
this repo has no description
1
fork
atom
overview
issues
pulls
pipelines
doc: add readme
robinwobin.dev
3 weeks ago
8263c039
765ba4f5
+48
1 changed file
expand all
collapse all
unified
split
README.md
+48
README.md
···
1
1
+
# ebil - ebil.club cli
2
2
+
3
3
+
## usage
4
4
+
5
5
+
push your site files to ebil.club:
6
6
+
7
7
+
```bash
8
8
+
ebil push --site robin.ebil.club dist/
9
9
+
```
10
10
+
11
11
+
pull your site from ebil.club to a local directory:
12
12
+
13
13
+
```bash
14
14
+
ebil pull --site robin.ebil.club site/
15
15
+
```
16
16
+
17
17
+
## installation
18
18
+
19
19
+
simply install using make:
20
20
+
21
21
+
```bash
22
22
+
sudo make install
23
23
+
```
24
24
+
25
25
+
or install for user:
26
26
+
27
27
+
```bash
28
28
+
PREFIX="$HOME/.local" make install
29
29
+
```
30
30
+
31
31
+
or run using :sparkles: _nix_ :sparkles: :
32
32
+
33
33
+
```bash
34
34
+
nix run git+https://codeberg.org/comfysage/ebil.git --
35
35
+
```
36
36
+
37
37
+
## env
38
38
+
39
39
+
you can set certain options using environment variables.
40
40
+
41
41
+
| env | option |
42
42
+
| ----------------------------- | ------------------------ |
43
43
+
| `EBIL_SITE="robin.ebil.club"` | `--site robin.ebil.club` |
44
44
+
| `EBIL_PATH="dist/"` | `--path dist/` |
45
45
+
46
46
+
## note
47
47
+
48
48
+
specify options _before_ regular arguments.