dxfl 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,11 +1,19 @@
|
|
|
1
|
-
#
|
|
1
|
+
# dxfl
|
|
2
2
|
|
|
3
3
|
A CLI tool to manage your Deuxfleurs account.
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
7
|
+
From NPM:
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
npm install -g dxfl
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
From git:
|
|
14
|
+
|
|
7
15
|
```
|
|
8
|
-
npm install -g git+https://git.deuxfleurs.fr/Deuxfleurs/
|
|
16
|
+
npm install -g git+https://git.deuxfleurs.fr/Deuxfleurs/dxfl
|
|
9
17
|
```
|
|
10
18
|
|
|
11
19
|
## Usage
|
|
@@ -15,29 +23,28 @@ npm install -g git+https://git.deuxfleurs.fr/Deuxfleurs/dfl
|
|
|
15
23
|
Start by login with your username, for example for `john`:
|
|
16
24
|
|
|
17
25
|
```
|
|
18
|
-
|
|
26
|
+
dxfl login john
|
|
19
27
|
```
|
|
20
28
|
|
|
21
29
|
Then you can list your websites:
|
|
22
30
|
|
|
23
31
|
```
|
|
24
|
-
|
|
32
|
+
dxfl list
|
|
25
33
|
```
|
|
26
34
|
|
|
27
35
|
And then to deploy your `_public` folder on `example.com`:
|
|
28
36
|
|
|
29
37
|
```
|
|
30
|
-
|
|
38
|
+
dxfl deploy example.com _public
|
|
31
39
|
```
|
|
32
40
|
|
|
33
41
|
## Development
|
|
34
42
|
|
|
35
43
|
```
|
|
36
|
-
git clone https://git.deuxfleurs.fr/Deuxfleurs/
|
|
37
|
-
cd
|
|
44
|
+
git clone https://git.deuxfleurs.fr/Deuxfleurs/dxfl
|
|
45
|
+
cd dxfl
|
|
38
46
|
npm install
|
|
39
|
-
|
|
40
|
-
node index.js
|
|
47
|
+
node bootstrap.js
|
|
41
48
|
```
|
|
42
49
|
|
|
43
50
|
## License
|