From 0443627c62821ed50743b3f04d2d5287d76af241 Mon Sep 17 00:00:00 2001 From: Stefan Liden Date: Sun, 24 Jul 2016 14:57:11 +0200 Subject: [PATCH] Updated README content --- README.md | 52 +++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 51 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 569e86f..47b3e86 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,52 @@ # fuge-dev-environment -An environment setup for building microservices with Fuge and SenecaJS. Uses Vagrant, Ansible and Docker + +__CURRENTLY BEING SETUP! DON'T USE IF YOU SEE THIS MESSAGE__ + +An environment setup for building microservices with Fuge and SenecaJS. Uses Vagrant, Ansible and Docker. + +Will install: + +* Ubuntu (hashicorp/precise64 package) +* Git +* Curl +* Anisble +* Docker +* NodeJS 4.17 +* Fuge NPM module +* Seneca NPM module + +## Requirements + +[Vagrant](https://vagrantup.com) should be installed on your machine. + +Vagrant in turn requires a VM provider to be installed, e.g. [VirtualBox](https://www.virtualbox.org/) + +## Run + +```vagrant up``` + +It'll take a while the first time unless you have the Vagrant box hashicorp/precise64 already setup. + +## Starting and Stopping + +### Start +```vagrant up``` (It'll take quite a while the first time) + +### Stop +```vagrant halt``` + +### Reload +In case configuration has been changed +```vagrant reload``` + +## Shell Access + +```vagrant ssh``` + +## Adding Code + +Coming + +## Destroying +If you want to completely clean up this virtual environment +```vagrant destroy -f```