🚀 Launch Week Day 4:Introducing the Alert Details Page: A Better Way to Explore Alerts.Learn More →
Socket
Book a DemoInstallSign in
Socket

hk-manifest

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hk-manifest

A Heroku hk CLI plugin for creating app.json manifests

latest
npmnpm
Version
0.2.0
Version published
Maintainers
1
Created
Source

hk-manifest

hk-manifest is an hk plugin for creating app.json files.

When you run it, it looks in the current directory for clues about the app, such a .git directory, a package.json, or a heroku git remote, and uses those to set sensible defaults for your app.json manifest

Installation

hk-manifest is a node module. If you need node, download the installer from nodejs.org.

hk-manifest is a command line interface, so it should be installed globally with the -g or --global flag.

To work as an hk plugin, hk-manifest symlinks itself to /usr/local/lib/hk/plugin/.

npm install hk-manifest --global

Usage

Run hk manifest in some directory.

cd my-cool-project
hk manifest

You'll see something like this:

small-sharp-tool $ hk manifest
Give your app a unique, URL-friendly name. (small-sharp-tool)
In just a few words, what is it? It does one thing, and does it well.
Enter some keywords, separated by commas. unix, microservice, http
What's the source URL? It can be a git(hub) URL or a tarball. https://github.com/jane/small-sharp-tool
If there's a website about this app, what is its URL? https://small-sharp-tool.com

{
  "name": "small-sharp-tool",
  "description": "It does one thing, and does it well.",
  "keywords": [
    "unix",
    "microservice",
    "http"
  ],
  "urls": {
    "source": "https://github.com/jane/small-sharp-tool",
    "website": "https://small-sharp-tool.com"
  }
}

Created app.json

Development

To use your locally cloned copy of hk-manifest on the command line:

cd my/fork/of/hk-manifest
npm link

To remove any npm installed or npm linked instance:

npm remove hk-manifest -g

FAQs

Package last updated on 01 Apr 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts