Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

geppetto

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

geppetto

SOA local development made easy. Run multiple processes with defined and common ENV's

  • 0.0.4
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

#Geppetto

SOA local development made easy.

Geppetto makes it simple to script the launch of all your local services with the desired environment variables

##Installation

npm install -g geppetto

##Usage

geppetto config.json

Define a json configuration file with the processes that you want running. You can define a:

  • dir (the directory you want the process to be launched from)
  • command (the command being called to launch the process)
  • env (a hash of process specific environment variables you want the process to have)

There is also a top level key _env that can be used to set common environment variables that all the processes need.

{
  "_env": {
    "MONGO_URL": "mongodb://localhost:27017/geppetto_db",
    "REDIS_URL": "redis://localhost:3333"
  },
  "Api Server": {
    "dir": "./node-server",
    "command": "node",
    "arguments": [ "app.js" ],
    "env": {
      "PORT": "1337"
    }
  },
  "App Server": {
    "command": "rails",
    "arguments": ["s"]
    "env": {
      "API_URL": "http://localhost:1337"
    }
  }
}

Keywords

FAQs

Package last updated on 18 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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc