dxfl 0.1.0 → 0.1.2

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.
Files changed (2) hide show
  1. package/README.md +16 -9
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,11 +1,19 @@
1
- # dfl
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/dfl
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
- dfl login john
26
+ dxfl login john
19
27
  ```
20
28
 
21
29
  Then you can list your websites:
22
30
 
23
31
  ```
24
- dfl list
32
+ dxfl list
25
33
  ```
26
34
 
27
35
  And then to deploy your `_public` folder on `example.com`:
28
36
 
29
37
  ```
30
- dfl deploy example.com _public
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/dfl
37
- cd dfl
44
+ git clone https://git.deuxfleurs.fr/Deuxfleurs/dxfl
45
+ cd dxfl
38
46
  npm install
39
- tsc
40
- node index.js
47
+ node bootstrap.js
41
48
  ```
42
49
 
43
50
  ## License
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "dxfl",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "",
5
5
  "license": "EUPL-1.2",
6
6
  "author": "Deuxfleurs Team <coucou@deuxfleurs.fr>",
7
7
  "type": "commonjs",
8
8
  "main": "bootstrap.js",
9
9
  "bin": {
10
- "dfl": "./bootstrap.js"
10
+ "dxfl": "./bootstrap.js"
11
11
  },
12
12
  "scripts": {
13
13
  "test": "echo \"Error: no test specified\" && exit 1"