forked from jemten/development
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
63 lines (60 loc) · 2.32 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
site_name: Development manual
site_url: http://www.clinicalgenomics.se/development
repo_url: https://github.com/Clinical-Genomics/development
site_author: Team <teamname>
markdown_extensions:
- footnotes
- markdown_include.include:
base_path: docs
theme:
name: 'readthedocs'
palette:
primary: 'blue grey'
accent: 'cyan'
nav:
- Home: 'index.md'
# - Where do I develop?
- What are the commonly used tools?: 'tools/README.md'
- Choose a development workflow:
- Overview: 'dev/models.md'
- github flow: 'dev/githubflow.md'
- git flow: 'dev/gitflow.md'
- 'How do confine my project?':
- 'How to name your conda env': 'conda/conda_conventions.md'
- 'How do I activate an env?': 'conda/activate.md'
- 'How do I manage perl and cpanm?': 'perl/installation/perlbrew.md'
# - What are the commonly used commands?
- Choose your editor :): 'editors/README.md'
- How do we use Python?:
- conventions: 'python/conventions.md'
- variables: 'python/variables.md'
- logging: 'python/logging.md'
# - CLI
- 'How to write unit tests?':
- 'GIVEN-WHEN-THEN': 'python/testing/index.md'
- 'Are you using fixtures?': 'python/testing/fixtures.md'
# - How to write documentation? -
# - How to run on stage?
# - How to use databases?
- How to integrate two tools?: 'dev/integration.md'
- How to publish your tool?:
- How to publish your tool?: 'publish/prod.md'
# - CHANGELOG
# - How to make a Python package?
# - How to bumpversion?
- How to automate running your tool?: 'publish/crontab.md'
- How make updating your tool easy?: 'publish/update-scripts.md'
- Who can sign off on tests, reviews and deploys?: 'publish/sign-off.md'
- How to update configuration?: 'publish/servers.md'
# - What are the security concerns?
- How do we use github?:
- How to make a pull request?: 'github/pr.md'
- How to request a pull request review?: 'github/pr-request.md'
- Pull request etiquette: 'github/pr-etiquette.md'
- Checklist for a github repository: 'dev/project.md'
- Other recommendations?:
- What if I need perl?: perl/README.md
- What are perl's best practices?: perl/best_practises/best_practises.md
# - What do we recommend for web develoment?
# - How do we do project management?
- How do I publish this manual?: 'mkdocs/index.md'