Fleek CLI
Fleek CLI provides a unified command line interface to Fleek Services.
Details
Stack
Basic commands
The Fleek CLI command has the following structure:
$ fleek <service> <command> [options and parameters]
To view all available services and commands use:
$ fleek help
To see all available commands for a service, use the help documentation as any one of the followings:
$ fleek <service> help
$ fleek <service> <command> help
To get the version of the Fleek CLI:
$ fleek --version
Development
- Install NodeJS from the official website or using nvm.
- Install pnpm dependency manager.
- Install dependencies usign
pnpm i
from rootpath. - Prepare your changes.
pnpm link -g
, pnpm build
, fleek -v
and happy testing!
Contributing
- Fork it
- Create your feature branch:
git checkout -b my-new-feature
- Run the tests:
pnpm test
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Create new Pull Request following the corresponding template guidelines