forked from commercialhaskell/stack
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmkdocs.yml
More file actions
185 lines (182 loc) · 6.46 KB
/
mkdocs.yml
File metadata and controls
185 lines (182 loc) · 6.46 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
site_name: The Haskell Tool Stack
site_description: |
A program for developing Haskell projects.
site_author: Stack contributors
site_url: !ENV READTHEDOCS_CANONICAL_URL
repo_url: https://github.com/commercialhaskell/stack/
edit_uri: tree/stable/doc/
copyright: Copyright (c) 2015-2025, Stack contributors
docs_dir: doc
site_dir: _site
theme:
name: material
palette:
primary: 'deep purple'
accent: 'deep purple'
logo: img/stack-logo-white.svg
favicon: img/stack-favicon.svg
features:
- content.code.annotate
- content.code.copy
- content.code.select
- content.tabs.link
- navigation.indexes
- navigation.tabs
- navigation.top
extra_css:
- css/extra.css
extra_javascript:
- js/searchhack.js
# Read the Docs requires JQuery for its JavaScript code to inject the flyout
# menu. Material for MkDocs does not come with JQuery.
- 'https://code.jquery.com/jquery-3.6.1.min.js'
- https://cdn.jsdelivr.net/npm/mermaid@11.7.0/dist/mermaid.min.js
exclude_docs: |
/maintainers/archive/
/maintainers/stack_errors.md
nav:
- Welcome!: README.md
- Setting up: install_and_upgrade.md
- Getting started:
- tutorial/index.md
- 1. A Hello World example: tutorial/hello_world_example.md
- 2. Package description: tutorial/package_description.md
- 3. Project configuration: tutorial/project_configuration.md
- 4. Building your project: tutorial/building_your_project.md
- 5. Building existing projects: tutorial/building_existing_projects.md
- 6. Installed package databases: tutorial/installed_package_databases.md
- 7. stack build synonyms: tutorial/stack_build_synonyms.md
- 8. stack build targets: tutorial/stack_build_targets.md
- 9. Multi-package projects: tutorial/multi-package_projects.md
- 10. Cabal flags and GHC options: tutorial/cabal_flags_and_ghc_options.md
- 11. Locations used by Stack: tutorial/locations_used_by_stack.md
- 12. Executing commands: tutorial/executing_commands.md
- 13. Using GHC interactively: tutorial/using_ghc_interactively.md
- 14. Stack configuration: tutorial/stack_configuration.md
- 15. In conclusion: tutorial/tutorial_conclusion.md
- Commands:
- commands/index.md
- bench: commands/bench_command.md
- build: commands/build_command.md
- clean: commands/clean_command.md
- config: commands/config_command.md
- dot: commands/dot_command.md
- docker: commands/docker_command.md
- eval: commands/eval_command.md
- exec: commands/exec_command.md
- ghc: commands/ghc_command.md
- ghci: commands/ghci_command.md
- haddock: commands/haddock_command.md
- hoogle: commands/hoogle_command.md
- hpc: commands/hpc_command.md
- ide: commands/ide_command.md
- init: commands/init_command.md
- install: commands/install_command.md
- list: commands/list_command.md
- ls: commands/ls_command.md
- new: commands/new_command.md
- path: commands/path_command.md
- purge: commands/purge_command.md
- query: commands/query_command.md
- repl: commands/repl_command.md
- run: commands/run_command.md
- runghc: commands/runghc_command.md
- runhaskell: commands/runhaskell_command.md
- script: commands/script_command.md
- sdist: commands/sdist_command.md
- setup: commands/setup_command.md
- templates: commands/templates_command.md
- test: commands/test_command.md
- uninstall: commands/uninstall_command.md
- unpack: commands/unpack_command.md
- update: commands/update_command.md
- upgrade: commands/upgrade_command.md
- upload: commands/upload_command.md
- Configure:
- configure/index.md
- Environment variables: configure/environment_variables.md
- Configuration files:
- configure/yaml/index.md
- Project-specific configuration: configure/yaml/project.md
- Non-project specific configuration: configure/yaml/non-project.md
- Global flags and options: configure/global_flags.md
- Customisation scripts: configure/customisation_scripts.md
- Topics:
- topics/index.md
- Stack root: topics/stack_root.md
- Stack work directories: topics/stack_work.md
- Snapshot location: topics/snapshot_location.md
- Package location: topics/package_location.md
- Snapshot specification: topics/custom_snapshot.md
- stack.yaml vs a Cabal file: topics/stack_yaml_vs_cabal_package_file.md
- Script interpreter: topics/scripts.md
- Docker integration: topics/docker_integration.md
- Nix integration: topics/nix_integration.md
- Non-standard project initialization: topics/nonstandard_project_init.md
- Debugging: topics/debugging.md
- Editor integration: topics/editor_integration.md
- Stack and Visual Studio Code: topics/Stack_and_VS_Code.md
- Developing on Windows: topics/developing_on_windows.md
- Shell auto-completion: topics/shell_autocompletion.md
- CI: topics/CI.md
- Travis CI: topics/travis_ci.md
- Azure CI: topics/azure_ci.md
- Lock files: topics/lock_files.md
- Haskell and C code: topics/haskell_and_c_code.md
- Get involved:
- community/index.md
- Contributors:
- Contributor's guide: CONTRIBUTING.md
- Dev Containers: dev_containers.md
- Maintainers:
- Version scheme: maintainers/version_scheme.md
- Releases: maintainers/releases.md
- Maintainer team process: maintainers/team_process.md
- Add GHC version: maintainers/ghc.md
- Upgrading MSYS2: maintainers/msys.md
- Upgrading 7-Zip: maintainers/7zip.md
- HaskellStack.org: maintainers/haskellstack.org.md
- Self-hosted runners: maintainers/self-hosted_runners.md
- Signing key: SIGNING_KEY.md
- How Stack works:
- Build overview: build_overview.md
- FAQ: faq.md
- Glossary: glossary.md
- More:
- Other resources: other_resources.md
- Version history: ChangeLog.md
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- toc:
permalink: true
plugins:
- search: {}
- redirects:
redirect_maps:
'GUIDE.md': 'tutorial/index.md'
'yaml_configuration.md': 'configure/yaml/index.md'
'build_command.md': 'commands/build_command.md'
'custom_snapshot.md': 'topics/custom_snapshot.md'
'lock_files.md': 'topics/lock_files.md'
'scripts.md': 'topics/scripts.md'
- social