https://github.com/motdotla/nodeployer
GitHub continous deployment to Amazon EC2. An alternative to Capistrano.
https://github.com/motdotla/nodeployer
Last synced: 7 months ago
JSON representation
GitHub continous deployment to Amazon EC2. An alternative to Capistrano.
- Host: GitHub
- URL: https://github.com/motdotla/nodeployer
- Owner: motdotla
- Created: 2013-02-11T05:24:24.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-02-11T07:15:42.000Z (over 12 years ago)
- Last Synced: 2025-01-24T04:37:58.765Z (9 months ago)
- Language: JavaScript
- Size: 117 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nodeployer
Use nodeployer for GitHub continous deployment to Amazon EC2. It is a superior alternative to capistrano.
## Usage
SSH into your Amazon EC2 instance and run the following.
$ cd .ssh
$ ssh-keygen -t rsa -C "your_email@youremail.com"
$ cat id_rsa.pub (copy the key and add it to your keys in your github settings)
$ sudo apt-get install nodejs npm
$ mkdir repos
$ cd repos
$ git clone git@github.com:YOURNAME/REPO_NAME.git
$ git clone git@github.com:scottmotte/nodeployer.git
$ cd nodeployer
$ npm install
$ REPO_NAME=name_of_your_repo node app.js
$ visit yourec2instance.amazon.com:3000Make sure port 3000 is opened up on your EC2 instance.