Skip to content
This repository has been archived by the owner on Jan 3, 2019. It is now read-only.

hivewallet/toolbelt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

50 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hive::Toolbelt

Command Line Interface for the Hive wallet

Installation

$ gem install hive-toolbelt

Usage

$ hive init     # walk you through scaffolding a Hive app
$ hive package  # creates a .hiveapp bundle from specified or current working directory (.hidden files ignored)
$ hive serve    # serve current working directory as a .hiveapp bundle by starting a registry server
$ hive release  # (TODO) bumps version, tags and pushes

hive init

$ mkdir new_app
$ cd new_app
$ hive init

hive init asks questions and scaffolds a Hive app. It

hive package

hive package [DIR_NAME] packages a directory into a .hiveapp bundle. DIR_NAME defaults to current working directory if not specified. Regardless of DIR_NAME, the generated .hiveapp bundle is always located at current working directory.

Note that the command deliberately exclude all .hidden files and directories, like .git, when generating the bundle.

Contributing

  1. Fork it ( http://github.com/hivewallet/hive-toolbelt/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request