Skip to content

Commit

Permalink
Initial setup of docusaurus
Browse files Browse the repository at this point in the history
  • Loading branch information
Purple-Skittles committed Dec 29, 2018
1 parent 2f75da3 commit 4a5c11a
Show file tree
Hide file tree
Showing 63 changed files with 6,719 additions and 782 deletions.
2 changes: 2 additions & 0 deletions .dockerignore
@@ -0,0 +1,2 @@
*/node_modules
*.log
3 changes: 0 additions & 3 deletions .gitbook.yaml

This file was deleted.

10 changes: 10 additions & 0 deletions Dockerfile
@@ -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 docker-compose.yml
@@ -0,0 +1,18 @@
version: "3"

services:
docusaurus:
build: .
ports:
- 3000:3000
- 35729:35729
volumes:
- ./docs:/app/docs
- ./website/blog:/app/website/blog
- ./website/core:/app/website/core
- ./website/i18n:/app/website/i18n
- ./website/pages:/app/website/pages
- ./website/static:/app/website/static
- ./website/sidebars.json:/app/website/sidebars.json
- ./website/siteConfig.js:/app/website/siteConfig.js
working_dir: /app/website
177 changes: 0 additions & 177 deletions docs/Makefile

This file was deleted.

16 changes: 0 additions & 16 deletions docs/README.md

This file was deleted.

1 change: 0 additions & 1 deletion docs/authors.rst

This file was deleted.

0 comments on commit 4a5c11a

Please sign in to comment.