Skip to content

Commit

Permalink
MkDocs Version (crweiner#530)
Browse files Browse the repository at this point in the history
Remake the Swag List into MkDocs instead of a Jekyll blog.
  • Loading branch information
crweiner authored Sep 27, 2022
1 parent 9902aa2 commit 97b6248
Show file tree
Hide file tree
Showing 38 changed files with 829 additions and 689 deletions.
26 changes: 0 additions & 26 deletions .all-contributorsrc

This file was deleted.

19 changes: 0 additions & 19 deletions .circleci/config.yml

This file was deleted.

13 changes: 0 additions & 13 deletions .deepsource.toml

This file was deleted.

19 changes: 19 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
.*
images
README.md

# mkdocs
mkdocs.yml
docs
site

# pipenv
Pipfile
Pipfile.lock

# amplify console
amplify.yml

# netlify
netlify.toml
runtime.txt
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
root = true

[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true

[Makefile]
indent_size = 4
indent_style = tab
12 changes: 9 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
_site
.sass-cache
.history
# mkdocs documentation
/site

# python
.venv

# editor
.vscode

# Mac
.DS_Store
2 changes: 1 addition & 1 deletion .mdlrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
rules "~MD013","~MD024"
rules "~MD013","~MD024","~MD024"
1 change: 0 additions & 1 deletion .ruby-version

This file was deleted.

176 changes: 0 additions & 176 deletions CONTRIBUTING.md

This file was deleted.

16 changes: 16 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
FROM python:3.8-slim-buster

LABEL maintainer="peaceiris"

# Install requirements
COPY ./requirements.txt /root
WORKDIR /root
RUN python3 -m pip install --no-cache-dir --upgrade pip && \
python3 -m pip install --no-cache-dir -r ./requirements.txt && \
python3 -m pip check

# Expose MkDocs development server port
EXPOSE 8000

# Start development server by default
CMD ["mkdocs", "serve", "--dev-addr=0.0.0.0:8000"]
5 changes: 0 additions & 5 deletions Gemfile

This file was deleted.

Loading

0 comments on commit 97b6248

Please sign in to comment.