-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathsupport.html
More file actions
28 lines (26 loc) · 917 Bytes
/
support.html
File metadata and controls
28 lines (26 loc) · 917 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{% extends "web/base.html" %}
{% block title %}Support{% endblock %}
{% block content %}
<div class="blue">
<h1>Support</h1>
<h2>IRC</h2>
<p>
Join the Deis core developers and user community on the <strong>#deis</strong>
channel at <a href="http://freenode.net">freenode.net</a>. All questions
are welcome, and the core Deis developers make every effort to be available.
</p>
<h2>GitHub</h2>
<p>
Request a new feature or report a bug to the Deis team as a
<a href="https://github.com/opdemand/deis/issues">GitHub issue</a>. Deis
has great test coverage, but we rely on you to help us find things to fix
and ways to improve.
</p>
<h2>StackOverflow</h2>
<p>
Questions about Deis, Docker, and PaaS systems in general receive expert
answers from a large developer community at
<a href="http://stackoverflow.com/">StackOverflow</a>.
</p>
</div>
{% endblock %}