Skip to content

Commit bd8378a

Browse files
committed
Update site with features reference.
1 parent e2deb1d commit bd8378a

File tree

6 files changed

+359
-19
lines changed

6 files changed

+359
-19
lines changed

Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.PHONY: install serve
2+
3+
install:
4+
bundle install
5+
6+
serve: install
7+
bundle exec jekyll serve

_data/features.yml

Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
- name: git
2+
description: Git SCM support (always enabled)
3+
artifacts:
4+
files:
5+
- .git/
6+
- .gitignore
7+
maturity: 0
8+
9+
- name: make
10+
description: Makefile generation support (always enabled)
11+
artifacts:
12+
files:
13+
- Makefile
14+
targets:
15+
- install
16+
- install-dev
17+
- update
18+
- update-requirements
19+
- help
20+
maturity: 0
21+
22+
- name: sphinx
23+
description: Sphinx documentation generator
24+
artifacts:
25+
targets:
26+
- docs
27+
maturity: 1
28+
29+
- name: docker
30+
description: Docker packaging support
31+
artifacts:
32+
files:
33+
- .dockerignore
34+
- Dockerfile/Rockerfile
35+
- docker-compose.yml
36+
targets:
37+
- docker-build
38+
- docker-push
39+
- docker-run
40+
- docker-shell
41+
maturity: 3
42+
43+
- name: python
44+
description: Python 3.5+ package using setuptools
45+
artifacts:
46+
files:
47+
- MANIFEST.in
48+
- classifiers.txt
49+
- requirements*.txt
50+
- setup.cfg
51+
- setup.py
52+
- $(PACKAGE)/*
53+
maturity: 1
54+
55+
- name: django
56+
requires: [python]
57+
description: Django project
58+
artifacts:
59+
files:
60+
- manage.py
61+
- settings.py
62+
- urls.py
63+
- wsgi.py
64+
targets:
65+
- runserver
66+
reqs:
67+
- django
68+
reqs_prod:
69+
- gunicorn
70+
maturity: 3
71+
72+
- name: pylint
73+
requires: [python]
74+
description: Linting, using pylint
75+
artifacts:
76+
targets:
77+
- lint
78+
reqs_dev:
79+
- pylint
80+
maturity: 10
81+
82+
- name: pytest
83+
requires: [python]
84+
description: Tests, using pytest
85+
artifacts:
86+
files:
87+
- tests/*
88+
targets:
89+
- test
90+
reqs_dev:
91+
- coverage
92+
- pytest
93+
- pytest-cov
94+
- pytest-sugar
95+
maturity: 1
96+
97+
- name: yapf
98+
requires: [python]
99+
description: Code formatting, using yapf
100+
artifacts:
101+
targets:
102+
- format
103+
reqs_dev:
104+
- yapf
105+
maturity: 1
106+
107+
- name: nodejs
108+
description: Nodejs package, using Yarn
109+
artifacts:
110+
files:
111+
- package.json
112+
maturity: 4
113+
114+
- name: webpack
115+
description: Webpack web assets builder
116+
requires: [nodejs]
117+
artifacts:
118+
files:
119+
- config/webpack.json
120+
maturity: 4

_includes/head.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,9 @@
2424
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
2525
<meta name="msapplication-TileColor" content="#da532c">
2626
<meta name="theme-color" content="#ffffff">
27+
28+
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/default.min.css">
29+
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script>
30+
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/languages/python.min.js"></script>
31+
<script>hljs.initHighlightingOnLoad();</script>
2732
</head>

_includes/js_files.html

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,3 @@
33
</script>
44
<script src="//code.jquery.com/jquery-1.10.2.min.js"></script>
55
<script src="{{ "/js/bootstrap.min.js" | prepend: site.baseurl }} "></script>
6-
<script src="{{ "/js/typeahead.bundle.min.js" | prepend: site.baseurl }} "></script>
7-
8-
<script src="{{ "/js/main.js" | prepend: site.baseurl }} "></script>

_includes/topnav.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
<div id="navbar" class="collapse navbar-collapse">
1515
<div class="navbar-right">
1616
<ul class="nav navbar-nav">
17-
<li><a href="http://medikit.rdc.li/" target="_blank">Documentation</a></li>
17+
<li><a href="#features"><i class="fa fa-cogs" aria-hidden="true"></i> Features</a></li>
18+
<li><a href="http://medikit.rdc.li/" target="_blank"><i class="fa fa-book" aria-hidden="true"></i> Documentation</a></li>
1819
<li><a href="{{ site.git_address }}" target="_blank"><i class="fa fa-github" aria-hidden="true"></i> Sources</a></li>
1920
</ul>
2021
</div>

0 commit comments

Comments
 (0)