@ossy/deployment-tools 0.0.3 → 0.0.4

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 CHANGED
@@ -1,10 +1,10 @@
1
1
  # deployment-tools
2
2
 
3
- Collection of scripts and tools to aid deployment of containers and static files
3
+ Command line toolkit to aid deployment of containers and static files
4
4
 
5
5
  ## Getting started
6
6
 
7
- Make sure Docker and Caddy is up and running
7
+ Make sure NodeJs and npm is installed and Docker and Caddy is up and running
8
8
  ```
9
9
  npx @ossy-se/deployment-tools start
10
10
  npx @ossy-se/deployment-tools deploy --ossyfile ./ossy.js
package/dist/index.js CHANGED
@@ -28876,7 +28876,6 @@ After=network.target
28876
28876
  [Service]
28877
28877
  Environment=DEPLOYMENT_TOOLS_PORT=3000
28878
28878
  User=root
28879
- WorkingDirectory=/%h/deployment-tools
28880
28879
  ExecStart=npx @ossy/deployment-tools start-container-manager
28881
28880
  Restart=on-failure
28882
28881
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ossy/deployment-tools",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "description": "Collection of scripts and tools to aid deployment of containers and static files",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
package/src/index.js CHANGED
@@ -28,7 +28,6 @@ After=network.target
28
28
  [Service]
29
29
  Environment=DEPLOYMENT_TOOLS_PORT=3000
30
30
  User=root
31
- WorkingDirectory=/%h/deployment-tools
32
31
  ExecStart=npx @ossy/deployment-tools start-container-manager
33
32
  Restart=on-failure
34
33