Upload files to different cloud providers.
You can preform a task via CLI
$ cd path/to/application/root
### Using the CLI
$ periodicjs ext periodicjs.ext.packagecloud hello
### Calling Manually
$ node index.js --cli --command --ext --name=periodicjs.ext.packagecloud --task=hello
You can configure periodicjs.ext.packagecloud
{
settings: {
defaults: true,
},
databases: {
},
};
Install like any other extension, run npm run install periodicjs.ext.packagecloud
from your periodic application root directory and then normally you would run periodicjs addExtension periodicjs.ext.packagecloud
, but this extension does this in the post install npm script.
$ cd path/to/application/root
$ npm run install periodicjs.ext.packagecloud
$ periodicjs addExtension periodicjs.ext.packagecloud //this extension does this in the post install script
Run npm run uninstall periodicjs.ext.packagecloud
from your periodic application root directory and then normally you would run periodicjs removeExtension periodicjs.ext.packagecloud
but this extension handles this in the npm post uninstall script.
$ cd path/to/application/root
$ npm run uninstall periodicjs.ext.packagecloud
$ periodicjs removeExtension periodicjs.ext.packagecloud // this is handled in the npm postinstall script
Make sure you have grunt installed
$ npm install -g grunt-cli
Then run grunt test or npm test
$ grunt test && grunt coveralls #or locally $ npm test
For generating documentation
$ grunt doc
$ jsdoc2md commands/**/*.js config/**/*.js controllers/**/*.js transforms/**/*.js utilities/**/*.js index.js > doc/api.md
- Check out https://github.com/typesettin/periodicjs for the full Periodic Documentation