From 48efdb83e710bb0c5942d4e3b5b3ce917633940c Mon Sep 17 00:00:00 2001 From: Andreas Bernacca Date: Sun, 5 Oct 2014 22:36:01 +0200 Subject: [PATCH] various grammar fixes, spell fixes and added missing words --- docs/application-deployment.md | 2 +- docs/configuration-management.md | 2 +- docs/troubleshooting.md | 2 +- docs/upgrading.md | 8 ++++---- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/application-deployment.md b/docs/application-deployment.md index 2f1822fe6..6815c3124 100644 --- a/docs/application-deployment.md +++ b/docs/application-deployment.md @@ -66,7 +66,7 @@ You can also specify fully qualified names, say `app.progrium.com`, as $ git remote add progrium git@progriumapp.com:app.progrium.com $ git push progrium master -So, after deployment the application is be available at, +So, after deployment the application will be available at, remote: -----> Application deployed: remote: http://app.progrium.com diff --git a/docs/configuration-management.md b/docs/configuration-management.md index 3b238390c..119c058d9 100644 --- a/docs/configuration-management.md +++ b/docs/configuration-management.md @@ -1,6 +1,6 @@ # Configuration management -Typically an application will require some configuration to run properly. Dokku supports application configuration via environment variables. Environment variables may contain private data, such as passwords or API keys, so it is not recommend to store them in your application's repository. +Typically an application will require some configuration to run properly. Dokku supports application configuration via environment variables. Environment variables may contain private data, such as passwords or API keys, so it is not recommended to store them in your application's repository. The `config` plugin provides the following commands to manage your variables: diff --git a/docs/troubleshooting.md b/docs/troubleshooting.md index 50c9ba3b9..02593c555 100644 --- a/docs/troubleshooting.md +++ b/docs/troubleshooting.md @@ -89,7 +89,7 @@ Please see https://github.com/progrium/dokku/issues/420 and https://github.com/h *** -__Symptom:__ I successfully deployed my application with no deployment errors and receiving Bad Gateway when attempting to access application +__Symptom:__ I successfully deployed my application with no deployment errors and receiving Bad Gateway when attempting to access the application __Solution:__ diff --git a/docs/upgrading.md b/docs/upgrading.md index 9b2c9fbf5..ff022aab7 100644 --- a/docs/upgrading.md +++ b/docs/upgrading.md @@ -32,7 +32,7 @@ This should be summary of breaking changes between 0.1 and 0.2 version with inst ### software-properties-common -software-properties-common is now dependency for plugins. Before running dokku install script, make sure it installed. +software-properties-common is now a dependency for plugins. Before running dokku install script, make sure it is installed. ```bash > sudo apt-get install software-properties-common @@ -42,7 +42,7 @@ software-properties-common is now dependency for plugins. Before running dokku i PR [#270](https://github.com/progrium/dokku/pull/270). -Starting with Dokku 0.2.0, [Gitrecieve](https://github.com/progrium/gitreceive) is replaced by a `git`plugin. +Starting with Dokku 0.2.0, [Gitrecieve](https://github.com/progrium/gitreceive) is replaced by a `git` plugin. Dokku no longer uses the `git` user. Everything is done with the `dokku` user account. @@ -55,7 +55,7 @@ Where `deploy` is the name of the remote. Additionally, the repositiories on the server must be migrated to work with dokku 0.2.0 -There is upgrade [script](https://gist.github.com/plietar/7201430), which is meant to automate this migration. To use it: +There is an upgrade [script](https://gist.github.com/plietar/7201430), which is meant to automate this migration. To use it: 1. run the script as root 2. `git pull` to get the latest version of dokku @@ -68,6 +68,6 @@ TDB. Commit [#6350f373](https://github.com/progrium/dokku/commit/6350f373be2cef4f3bb90912099e1be6196522d1) -Buildstep have to re-installed in order to support cache directory. +Buildstep have to be re-installed in order to support cache directory. TDB.