[go: up one dir, main page]

Skip to content

Commit

Permalink
docusuarus init
Browse files Browse the repository at this point in the history
  • Loading branch information
mweststrate committed Sep 12, 2019
1 parent cb1c6dd commit b1e2217
Show file tree
Hide file tree
Showing 38 changed files with 8,957 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*/node_modules
*.log
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM node:8.11.4

WORKDIR /app/website

EXPOSE 3000 35729
COPY ./docs /app/docs
COPY ./website /app/website
RUN yarn install

CMD ["yarn", "start"]
18 changes: 18 additions & 0 deletions _site/.github/ISSUE_TEMPLATE/bug/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<h2>🐛 Bug Report</h2>
<p>A clear and concise description of what the bug is.</p>
<h2>To Reproduce</h2>
<p>Steps to reproduce the behavior:</p>
<h2>Expected behavior</h2>
<p>A clear and concise description of what you expected to happen.</p>
<h2>Link to repro (highly encouraged)</h2>
<p>
Please provide either a
<a href="https://codesandbox.io/s/82zqr6n3kj">CodeSandbox demo</a> or a
minimal repository on GitHub.
</p>
<h2>Environment</h2>
<ul>
<li><strong>Immer version:</strong></li>
<li>[ ] Occurs with <code>setUseProxies(true)</code></li>
<li>[ ] Occurs with <code>setUseProxies(false)</code> (ES5 only)</li>
</ul>
6 changes: 6 additions & 0 deletions _site/.github/ISSUE_TEMPLATE/feature/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<h2>🚀 Feature Proposal</h2>
<p>A clear and concise description of what the feature is.</p>
<h2>Motivation</h2>
<p>Please outline the motivation for the proposal.</p>
<h2>Example</h2>
<p>Please provide an example for how this feature would be used.</p>
Loading

0 comments on commit b1e2217

Please sign in to comment.