https://github.com/westonplatter/example_javascript_deploys
Examples for provision servers and deploying Javascript (nodejs/meteor) apps
https://github.com/westonplatter/example_javascript_deploys
Last synced: about 2 months ago
JSON representation
Examples for provision servers and deploying Javascript (nodejs/meteor) apps
- Host: GitHub
- URL: https://github.com/westonplatter/example_javascript_deploys
- Owner: westonplatter
- License: bsd-3-clause
- Created: 2013-12-05T23:45:09.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-12-06T05:58:58.000Z (over 11 years ago)
- Last Synced: 2024-04-14T20:10:41.521Z (about 1 year ago)
- Size: 125 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
example_javascript_deploys
==========================Examples for provisioning servers and deploying Javascript (nodejs/meteor) apps.
__1. Setup Vagrant__
```sh
vagrant up
```__2. Setup the deploy folders__
```sh
ansible-playbook\
simpleapp-setup.yml\
-i hosts\
-u vagrant\
-c ssh\
--private-key=~/.vagrant.d/insecure_private_key
```__3. Deploy the app__
```sh
ansible-playbook\
simpleapp-deploy.yml\
-i hosts\
-u vagrant\
-c ssh\
--private-key=~/.vagrant.d/insecure_private_key
```