summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-06-25 12:41:48 -0400
committer=Corey Hulen <corey@hulen.com>2015-06-25 12:41:48 -0400
commit92391121e6febc4d80320742e51fc67af773d904 (patch)
tree2d52b89e46df82d58470b4add1e47f717aefb4da
parent5bc0a19953a4c66058da08e7d560a01b0d428607 (diff)
downloadchat-92391121e6febc4d80320742e51fc67af773d904.tar.gz
chat-92391121e6febc4d80320742e51fc67af773d904.tar.bz2
chat-92391121e6febc4d80320742e51fc67af773d904.zip
updating readme
-rw-r--r--README.md17
-rw-r--r--config/config_docker.json2
2 files changed, 18 insertions, 1 deletions
diff --git a/README.md b/README.md
index c2b0fbf2d..3f5c60574 100644
--- a/README.md
+++ b/README.md
@@ -80,6 +80,17 @@ If you wish to remove mattermost-dev use the following commands
1. `docker stop mattermost-dev`
2. `docker rm -v mattermost-dev`
+If you wish to gain access to the container use the folowwing commands
+1. `docker exec -ti mattermost-dev /bin/bash`
+
+We've updated the config file to skip email verification. You can pull the latest docker container or run the following to skip email verification
+1. `docker exec -ti mattermost-dev /bin/bash`
+2. `cd src/github.com/mattermost/platform/config`
+3. `vi config_docker.json`
+4. `Edit "Mode" : "prod", -> "Mode" : "dev"`
+5. `docker stop mattermost-dev`
+6. `docker start mattermost-dev`
+
AWS Elastic Beanstalk Setup (Docker)
------------------------------------
@@ -119,6 +130,11 @@ AWS Elastic Beanstalk Setup (Docker)
26. Return to the dashboard on the sidebar and wait for beanstalk update the environment.
27. Try it out by entering the domain you mapped into your browser.
+Contributing
+------------
+
+To contribute to this open source project please review the Mattermost Contribution Guidelines at http://www.mattermost.org/contribute-to-mattermost/.
+
License
-------
@@ -126,3 +142,4 @@ Most Mattermost source files are made available under the terms of the GNU Affer
As an exception, Admin Tools and Configuration Files are are made available under the terms of the Apache License, version 2.0. See LICENSE.txt for more information.
+
diff --git a/config/config_docker.json b/config/config_docker.json
index 6936f619a..85f0d9c73 100644
--- a/config/config_docker.json
+++ b/config/config_docker.json
@@ -10,7 +10,7 @@
"ServiceSettings": {
"SiteName": "Mattermost",
"Domain": "",
- "Mode" : "prod",
+ "Mode" : "dev",
"AllowTesting" : false,
"UseSSL": false,
"Port": "80",