@venncreative/venndo

A tool for doing mundane or repetitive tasks.

Usage no npm install needed!

<script type="module">
  import venncreativeVenndo from 'https://cdn.skypack.dev/@venncreative/venndo';
</script>

README

venndo

A tool for doing mundane or repetitive tasks.

oclif Version Downloads/week License

Usage

$ npm install -g @venncreative/venndo
$ venndo COMMAND
running command...
$ venndo (-v|--version|version)
@venncreative/venndo/0.2.3 darwin-x64 node-v12.13.0
$ venndo --help [COMMAND]
USAGE
  $ venndo COMMAND
...

Commands

venndo add-git-ftp

get project set up with git-ftp

USAGE
  $ venndo add-git-ftp

OPTIONS
  -h, --help  show CLI help

DESCRIPTION
  You will be given a series of prompts asking for configuration.

  You will need :
  * Port
  * Username
  * hostname
  * server password

  Answer the questions and the answers will add your ssh key to the server and
  set the relevant config options for git-ftp in the repo.

EXAMPLE
  $ venndo add-git-ftp

See code: src/commands/add-git-ftp.ts

venndo create CLONE PROJECT

Scaffold a project from a git repo

USAGE
  $ venndo create CLONE PROJECT

ARGUMENTS
  CLONE    The name of the git project on which to base on
  PROJECT  The name of the new project

OPTIONS
  -h, --help  show CLI help

EXAMPLE
  $ venndo create baseProject projectName

See code: src/commands/create/index.ts

venndo create:new CLONE REPO

Set a new project relationship for scaffolding

USAGE
  $ venndo create:new CLONE REPO

ARGUMENTS
  CLONE  A git repo to use as a base
  REPO   The git clone URL for the project

OPTIONS
  -h, --help  show CLI help

EXAMPLE
  $ venndo create:new new-project git@bitbucket.org:organisation/project.git

See code: src/commands/create/new.ts

venndo env

Create an env file from a few prompts

USAGE
  $ venndo env

OPTIONS
  -h, --help  show CLI help

DESCRIPTION
  You will be given a series of prompts asking for configuration.
  Answer the questions and the answers will form an .env file.

EXAMPLE
  $ venndo env

See code: src/commands/env.ts

venndo help [COMMAND]

display help for venndo

USAGE
  $ venndo help [COMMAND]

ARGUMENTS
  COMMAND  command to show help for

OPTIONS
  --all  see all commands in CLI

See code: @oclif/plugin-help