No description
Find a file
2025-02-23 13:31:22 +01:00
.gitignore switch to a proper typescript compilation 2025-02-22 20:58:26 +01:00
.npmignore finally npm publish works 2025-02-22 21:35:29 +01:00
auth.ts Deploy command 2025-02-22 14:24:15 +00:00
deploy.ts handle more cases of undefined in ListObjects replies 2025-02-23 12:17:36 +01:00
index.ts switch to a proper typescript compilation 2025-02-22 20:58:26 +01:00
LICENSE add eupl license 2025-02-20 20:25:54 +01:00
package-lock.json fix README 2025-02-22 21:37:12 +01:00
package.json set version 0.1.5 2025-02-23 13:31:22 +01:00
README.md set version 0.1.5 2025-02-23 13:31:22 +01:00
tsconfig.json switch to a proper typescript compilation 2025-02-22 20:58:26 +01:00
vhosts.ts switch to a proper typescript compilation 2025-02-22 20:58:26 +01:00

dxfl

A CLI tool to manage your Deuxfleurs account.

Install

npm install -g dxfl

Usage

Not ready

Start by login with your username, for example for john:

dxfl login john

Then you can list your websites:

dxfl list

And then to deploy your _public folder on example.com:

dxfl deploy example.com _public

Development

git clone https://git.deuxfleurs.fr/Deuxfleurs/dxfl
cd dxfl
npm install
npm link
dxfl

Release

First you need an account on npmjs.com and be a maintainer of the dxfl package (ask quentin). Do not forget also to run npm login to bind your account with the CLI.

Then to publish a release:

vim package.json # update the version in this file
git commit -a -m 'set version 0.1.5' # commit your change
git push # send update
git tag -m 'v0.1.5' v0.1.5 # create associated tag
git push --tags # push tag
npm publish # build and push the package

License

This software is distributed under the EUPL-1.2 license.