This file explains how to add new dashboard or query to redash.

1. To add query to EXISTING dashboard you should:
   - add sql file to proper subdirectory (for example Volume_Global_Analytics if that is the dashboard that you are interested in)
   - create json file with redash configuration inside and put it inside this directory
   - make sure that value of key "redash_query_sql_filename" in json file starts with  "Volume_Global_Analytics/",
   - run configure_redash

2. To create NEW dashboard you should:
   - create new directory with same name as dashboard name (underscores will be replaced with spaces)
   - add sql files to newly created directory
   - create json file with redash configuration inside and put it inside this directory
   - make sure that value of key "redash_query_sql_filename" in json file starts with the name of the new directory
     followed by slash
   - run configure_redash

3. To create new query but not add it to any dashboard you should do steps from point 1 but choose fake dashboard
   name Queries_Without_Dashboard or Custom_Queries_Without_Dashboard (first one if for queries provided by Starfish
   team, second one is for custom client queries). This will tell configure_redash script to not add it to any
   dashboard.
