@stoar/cli
Version:
CLI tool for STOAR - decentralized file storage on Arweave
9 lines • 371 B
JavaScript
import { Command } from 'commander';
import chalk from 'chalk';
export const deployCommand = new Command('deploy')
.description('Deploy static websites to STOAR')
.action(() => {
console.log(chalk.yellow('Deploy command coming soon!'));
console.log('This will allow you to deploy static websites to STOAR storage.');
});
//# sourceMappingURL=deploy.js.map