From e8ffbd5a92af620de81be6284ef0138bef4ff69d Mon Sep 17 00:00:00 2001 From: Pranav Raj S Date: Wed, 2 Oct 2019 11:39:41 +0800 Subject: [PATCH] [docs] Add common errors section (#87) --- docs/_sidebar.md | 1 + docs/development/project-setup/errors.md | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 docs/development/project-setup/errors.md diff --git a/docs/_sidebar.md b/docs/_sidebar.md index aefcfbb93..2a9768a0d 100644 --- a/docs/_sidebar.md +++ b/docs/_sidebar.md @@ -4,3 +4,4 @@ * [Development Guide](development/environment-setup/ubuntu.md) * [Project Dependencies](development/project-setup/dependencies.md) * [Environment Variables](development/project-setup/environment-variables.md) +* [Common Errors](development/project-setup/errors.md) diff --git a/docs/development/project-setup/errors.md b/docs/development/project-setup/errors.md new file mode 100644 index 000000000..2e0aa0d80 --- /dev/null +++ b/docs/development/project-setup/errors.md @@ -0,0 +1,5 @@ +### Errors you might encounter while setting up the project + +#### ArgumentError: invalid uri scheme + +This is an error thrown from redis connector. You might not have setup the redis environment variables properly. Please refer to dependencies section to install [redis-server](https://docs.chatwoot.com/#/development/environment-setup/ubuntu?id=install-redis-server) and [Configure Redis URL](https://docs.chatwoot.com/#/development/project-setup/environment-variables?id=configure-redis-url) in the environment-variables section.