meteor-deploy-git
Version:
Simple Meteor deployment tool
35 lines (22 loc) • 1.3 kB
Markdown
#Meteor-deploy
[FULL DOCS here: www.meteor-deploy.com](https://meteor-deploy.com).
## Installation
`npm install -g meteor-deploy-git`
## Introduction
This tool is design to push Meteor apps using your favorite git push command.
<br>You just need to have a git initialized on your project. This package lets you **deploy using git**.
<br>Your server needs to be 1GB RAM or more.
<br>Recommended Ubuntu 18.04 x64
Supports server IP or domain name and SSL certificates with Letsencrypt.
## Gettings started
To setup the config, simply run `meteor-deploy init` on your console.
<br>You will be prompted for the basic server data. Those data will be saved in a .meteor-config file. DON'T FORGET TO CHECK your .gitignore to avoid password exposure or delete .meteor-config
<br>Currently supporting password login to the server. SSL coming soon !
## Usage
To deploy your meteor app, run `meteor-deploy` without argument or simply push your git branch to meteor-deploy remote using : `git push meteor-deploy master`.<br>
Go to your server's address to see your meteor app.
## Commands
`meteor-deploy init` : Init and setup your server<br>
`meteor-deploy` : Deploy to your server<br>
`git push meteor-deploy master` : Same as previous<br>
`meteor-deploy reset` : Deletes the configuration file<br>