+
+
+**Install Yeoman, generator-angular-fullstack, & the Gulp CLI**
+
+```bash
+$ npm install --global yo generator-angular-fullstack gulp-cli
+```
+
+
+
+**Make a new folder for your project, scope into it, and run the generator.**
+
+```bash
+$ mkdir example && cd $_
+$ yo angular-fullstack
+...
+```
+
+Answer the generator's questions to scaffold an app tailored to your preferences.
+
+
+
+
+## Get up and running
+
+
+
+
+**Start the development server**
+
+```bash
+$ gulp serve
+```
+
+Your web browser should open up to a page similar to the one shown to the right.
+
+
+
+
+
+
+
diff --git a/docs/docs.css b/docs/docs.css
new file mode 100644
index 000000000..247035323
--- /dev/null
+++ b/docs/docs.css
@@ -0,0 +1,8 @@
+.s-content img {
+ max-width: 800px;
+ width: 100%;
+ margin-bottom: 20px;
+ box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.2),
+ 0px 10px 14px 1px rgba(0, 0, 0, 0.14),
+ 0px 4px 18px 3px rgba(0, 0, 0, 0.12);
+}
diff --git a/docs/generators/heroku.md b/docs/generators/heroku.md
deleted file mode 100644
index 3d62c7c5d..000000000
--- a/docs/generators/heroku.md
+++ /dev/null
@@ -1,54 +0,0 @@
-### Heroku
-
-Deploying to heroku only takes a few steps.
-
- yo angular-fullstack:heroku
-
-To work with your new heroku app using the command line, you will need to run any `heroku` commands from the `dist` folder.
-
-
-If you're using mongoDB you will need to add a database to your app:
-
- heroku addons:create mongolab
-
-Note: if you get an `Error: No valid replicaset instance servers found` you need to modify moongose connection options in config/environment/production.js as follows:
-```
-options: {
- db: {
- safe: true,
- replset: { socketOptions: { keepAlive: 1, connectTimeoutMS: 30000 } },
- server: { socketOptions: { keepAlive: 1, connectTimeoutMS: 30000 } }
- }
- }
-```
-One of the odd things about the Node driver is that the default timeout for replica set connections is only 1 second, so make sure you're setting it to something more like 30s like in this example.
-
-
-Your app should now be live. To view it run `heroku open`.
-
->
-> If you're using any oAuth strategies, you must set environment variables for your selected oAuth. For example, if we're using **Facebook** oAuth we would do this :
->
-> heroku config:set FACEBOOK_ID=id
-> heroku config:set FACEBOOK_SECRET=secret
->
-> You will also need to set `DOMAIN` environment variable:
->
-> heroku config:set DOMAIN=