Add static site
This commit is contained in:
parent
7b9777a352
commit
70780ce71b
17
.travis.yml
Normal file
17
.travis.yml
Normal file
@ -0,0 +1,17 @@
|
||||
anguage: python
|
||||
|
||||
python:
|
||||
- "3.6"
|
||||
|
||||
script:
|
||||
- cp README.md docs/index.md
|
||||
- mkdocs build
|
||||
|
||||
deploy:
|
||||
provider: pages
|
||||
local-dir: site
|
||||
skip-cleanup: true
|
||||
keep-history: true
|
||||
github-token: $GITHUB_TOKEN
|
||||
on:
|
||||
branch: master
|
23
mkdocs.yml
Normal file
23
mkdocs.yml
Normal file
@ -0,0 +1,23 @@
|
||||
site_name: Awesome DevOps
|
||||
site_url: https://awesome-devops.xyz
|
||||
site_description: A curated list of awesome DevOps tools, platforms and resources
|
||||
site_author: Marius Stanca
|
||||
repo_name: wmariuss/awesome-devops
|
||||
repo_url: https://github.com/wmariuss/awesome-devops
|
||||
theme:
|
||||
name: material
|
||||
palette:
|
||||
primary: 'black'
|
||||
accent: 'light blue'
|
||||
extra:
|
||||
social:
|
||||
- type: github
|
||||
link: https://github.com/wmariuss
|
||||
- type: twitter
|
||||
link: https://twitter.com/wmariuss
|
||||
- type: linkedin
|
||||
link: https://www.linkedin.com/in/wmariuss
|
||||
extra_css:
|
||||
- css/extra.css
|
||||
nav:
|
||||
- "Life is short, you need Python.": "index.md"
|
2
requirements.txt
Normal file
2
requirements.txt
Normal file
@ -0,0 +1,2 @@
|
||||
mkdocs==1.0.4
|
||||
mkdocs-material==4.5.0
|
Loading…
Reference in New Issue
Block a user