# meteor-nebula

> deploy several meteorites at once

Latest version **0.1.1** (published 2014-12-08) · MIT license · 0 weekly downloads

## Install

```sh
npm install meteor-nebula
pnpm add meteor-nebula
yarn add meteor-nebula
bun add meteor-nebula
```

Provides the command `nebula`.

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.1 |
| Published | 2014-12-08 |
| First published | 2014-09-10 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 12 |
| Known vulnerabilities | 0 (+11 in 3 direct dependencies) |
| Install scripts | no |
| GitHub stars | 0 |
| Author | apendua |
| Maintainers | apendua |
| Keywords | meteor, cloud, nebula, hosting, forever |

## Links

- npm: https://www.npmjs.com/package/meteor-nebula
- Repository: https://github.com/anticoders/nebula
- Issues: https://github.com/anticoders/nebula/issues
- npm.io page: https://npm.io/package/meteor-nebula

## Dependencies (12)

- [ssh2](https://npm.io/package/ssh2.md) ^0.3.6
- [async](https://npm.io/package/async.md) ^0.9.0
- [chalk](https://npm.io/package/chalk.md) ^0.5.1
- [colors](https://npm.io/package/colors.md) ^0.6.2
- [fibers](https://npm.io/package/fibers.md) ^1.0.2
- [mkdirp](https://npm.io/package/mkdirp.md) ^0.5.0
- [js-yaml](https://npm.io/package/js-yaml.md) ^3.2.2
- [mongodb](https://npm.io/package/mongodb.md) ^1.4.11
- [keypress](https://npm.io/package/keypress.md) ^0.2.1
- [commander](https://npm.io/package/commander.md) ^2.3.0
- [handlebars](https://npm.io/package/handlebars.md) ^2.0.0
- [es6-promise](https://npm.io/package/es6-promise.md) ^1.0.0

## Recent versions

- 0.1.1 (latest) — 2014-12-08
- 0.1.0 — 2014-09-19
- 0.0.1 — 2014-09-10

## README

nebula
======

A tool for deploying meteor apps.

installation
------------

Start by installing on your development machine:
```
npm install -g meteor-nebula
```
Then install it on your server:
```
sudo curl https://gist.githubusercontent.com/apendua/46bcbfb403a8bb5b2ce5/raw/install-nebula.sh | sh
```

configuration
-------------

An example config file may look like this:
```javascript
{
  "host": "192.168.33.10",
  "port": 22,
  "user": "nebula",
  "pass": "secret",
  "apps": {
    "app1": {
      "git" : "https://github.com/anticoders/impact-demo-generic.git",
      "env" : {
        "METEOR_SETTINGS" : {
          "public": {}
        },
        "MONGO_URL" : "mongodb://localhost:27017/app1",
        "ROOT_URL"  : "http://localhost:8080"
      },
      "domain": "localhost"
    },
    "app2": {
      "git" : "https://github.com/anticoders/impact-demo-generic.git",
      "env" : {
        "FAKE"      : 1,
        "MONGO_URL" : "mongodb://localhost:27017/app2",
        "ROOT_URL"  : "http://127.0.0.1:8080"
      },
      "domain": "127.0.0.1"
    }
  }
}

```
save it to `nebula.json` and run `nebula deploy` in the same directory.



nebula deploy [config]

The required config does not exist yet. Let's create one.

Config name:
Host name:
Username:
Password:
Save creds? [Y/n]:

---
_Source: https://npm.io/package/meteor-nebula · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
