+<p>For detaile information, see <a class="reference external" href="https://github.com/DTVD/rainbowstream/blob/master/theme.md">theme usage and customization</a>.</p>
+</div>
+<div class="section" id="config-explanation">
+<h2>Config explanation<a class="headerlink" href="#config-explanation" title="Permalink to this headline">¶</a></h2>
+<p>Rainbow Stream has a config file located at <tt class="docutils literal"><span class="pre">~/.rainbow_config.json</span></tt>.
+You can view or set a new value of every config key by <tt class="docutils literal"><span class="pre">config</span></tt> command (See <strong>Interactive mode</strong> section above).</p>
+<ul class="simple">
+<li><tt class="docutils literal"><span class="pre">THEME</span></tt>: current theme.</li>
+<li><tt class="docutils literal"><span class="pre">ASCII_ART</span></tt>: diplay your twitter name by ascii art at stream begin or not.</li>
+<li><tt class="docutils literal"><span class="pre">SEARCH_MAX_RECORD</span></tt>: max tweets can display on ‘search’ command.</li>
+<li><tt class="docutils literal"><span class="pre">HOME_TWEET_NUM</span></tt>: default tweets to display on ‘home’ command.</li>
+<li><tt class="docutils literal"><span class="pre">RETWEETS_SHOW_NUM</span></tt>: default tweets to display on ‘allrt’ command.</li>
+<li><tt class="docutils literal"><span class="pre">MESSAGES_DISPLAY</span></tt>: default messages to display on ‘inbox’ or ‘sent’ command.</li>
+<li><tt class="docutils literal"><span class="pre">TREND_MAX</span></tt>: default trends to display on ‘trend’ command.</li>
+<li><tt class="docutils literal"><span class="pre">LIST_MAX</span></tt>: default tweets to display on ‘list home’ command.</li>
+<li><tt class="docutils literal"><span class="pre">ONLY_LIST</span></tt>: filter list on ‘switch’ command.</li>
+<li><tt class="docutils literal"><span class="pre">IGNORE_LIST</span></tt>: ignore list on ‘switch’ command.</li>
+<li><tt class="docutils literal"><span class="pre">HISTORY_FILENAME</span></tt>: name of file which stores input history.</li>
+<li><tt class="docutils literal"><span class="pre">IMAGE_SHIFT</span></tt>: left and right margin of image in ‘-iot’/’–image-on-term’ mode.</li>
+<li><tt class="docutils literal"><span class="pre">IMAGE_MAX_HEIGHT</span></tt>: max height of image in ‘-iot’/’–image-on-term’ mode.</li>
+<li><tt class="docutils literal"><span class="pre">USER_DOMAIN</span></tt>: user URL of Twitter Streaming API.</li>
+<li><tt class="docutils literal"><span class="pre">PUBLIC_DOMAIN</span></tt>: public URL of Twitter Streaming API.</li>
+<li><tt class="docutils literal"><span class="pre">SITE_DOMAIN</span></tt>: site URL of Twitter Streaming API.</li>
+</ul>
+</div>
+</div>
+<div class="section" id="development">
+<h1>Development<a class="headerlink" href="#development" title="Permalink to this headline">¶</a></h1>
+<p>If you want to build a runnable version yourself, follow these simple
+steps</p>
+<ul>
+<li><p class="first"><a class="reference external" href="https://apps.twitter.com/app/new">Create your own Twitter Application</a></p>
+</li>
+<li><p class="first">Get your Twitter application’s API key and secret</p>
+</li>
+<li><p class="first">Fork github’s repo and clone in your system.</p>
+</li>
+<li><p class="first">Create a file <tt class="docutils literal"><span class="pre">consumer.py</span></tt> in <a href="#id1"><span class="problematic" id="id2">``</span></a><a href="#id5"><span class="problematic" id="id6">`rainbowstream```_</span></a> folder with
+following content</p>
+<div class="code python highlight-python"><div class="highlight"><pre><span class="c"># Consumer information</span>
+<span class="n">CONSUMER_KEY</span> <span class="o">=</span> <span class="s">'APIKey'</span> <span class="c"># Your Twitter application's API key</span>
+<span class="n">CONSUMER_SECRET</span> <span class="o">=</span> <span class="s">'APISecret'</span> <span class="c"># Your Twitter application's API secret</span>
+</pre></div>
+</div>
+</li>
+<li><p class="first">Use pip to install in local</p>
+<div class="code bash highlight-python"><div class="highlight"><pre># cd to directory which contains setup.py (cloned directory)
+virtualenv venv # Python3 users: use -p to specify python3
+source venv/bin/activate
+pip install -e .
+which rainbowstream # /this-directory/venv/bin/rainbowstream
+pip list | grep rainbowstream # rainbowstream (0.x.x, /this-directory)
+# Remove ~/.rainbow_oauth if exists
+rainbowstream # local version of rainbowstream
+</pre></div>
+</div>
+</li>
+</ul>