-
Notifications
You must be signed in to change notification settings - Fork 494
Expand file tree
/
Copy pathmkdocs.yml
More file actions
338 lines (319 loc) · 12.4 KB
/
mkdocs.yml
File metadata and controls
338 lines (319 loc) · 12.4 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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
site_name: "Pixi"
site_url: https://prefix-dev.github.io/pixi
site_description: Pixi Documentation — Next-gen package manager for reproducible development setups
repo_url: https://github.com/prefix-dev/pixi/
edit_uri: edit/main/docs/
theme:
name: material
custom_dir: docs/overrides
favicon: assets/pixi.png
logo: assets/pixi-logo.svg
font:
text: Inter
code: JetBrains Mono
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: prefix-light
accent: prefix-light
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: prefix
accent: prefix
toggle:
icon: material/brightness-4
name: Switch to system preference
icon:
edit: material/pencil
view: material/eye
features:
- content.tabs.link
- content.code.copy
- content.action.edit
- content.code.annotate
- content.tooltips
# - content.code.select
- navigation.instant
- navigation.instant.progress
- navigation.tracking
- navigation.indexes
- navigation.top
- navigation.footer
extra_css:
- stylesheets/extra.css
extra_javascript:
- javascripts/extra.js
markdown_extensions:
- admonition
- abbr
- def_list
- footnotes
- attr_list
- pymdownx.extra
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
- pymdownx.tabbed:
alternate_style: true
- toc:
toc_depth: 3
permalink: "#"
- mdx_truly_sane_lists
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/prefix-dev
- icon: fontawesome/brands/mastodon
link: https://hachyderm.io/@prefix
- icon: fontawesome/brands/bluesky
link: https://bsky.app/profile/prefix.dev
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/prefix-dev
- icon: fontawesome/brands/twitter
link: https://twitter.com/prefix_dev
version:
provider: mike
nav:
- Home: index.md
- Getting Started:
- Installation: installation.md
- First Workspace: first_workspace.md
- Basic Usage: getting_started.md
- The Conda Ecosystem: conda_ecosystem.md
- Tutorials:
- Python:
- Basic Usage: python/tutorial.md
- pyproject.toml: python/pyproject_toml.md
- Pytorch Installation: python/pytorch.md
- ROS 2: tutorials/ros2.md
- Rust: tutorials/rust.md
- Switching From...:
- uv: switching_from/uv.md
- Poetry: switching_from/poetry.md
- Conda/Mamba: switching_from/conda.md
- Multi Environment: tutorials/multi_environment.md
- Global Tools: global_tools/introduction.md
- Import Environments: tutorials/import.md
- Concepts:
- Environments: workspace/environment.md
- Tasks: workspace/advanced_tasks.md
- Multi Platform: workspace/multi_platform_configuration.md
- Multi Environment: workspace/multi_environment.md
- Lock File: workspace/lockfile.md
- System Requirements: workspace/system_requirements.md
- Package Specifications: concepts/package_specifications.md
- Conda & PyPI: concepts/conda_pypi.md
- Global Tools:
- Manifest: global_tools/manifest.md
- Trampolines: global_tools/trampolines.md
- Building:
- Getting Started: build/getting_started.md
- Tutorials:
- Building a Python Package: build/python.md
- Building a C++ Package: build/cpp.md
- Building a ROS Package: build/ros.md
- Multiple Packages in Workspace: build/workspace.md
- Variants: build/variants.md
- Advanced Building Using rattler-build: build/advanced_cpp.md
- Cross Compilation using rattler-build: build/cross_compilation.md
- Dependency Types: build/dependency_types.md
- Build Backends:
- Overview: build/backends.md
- CMake: build/backends/pixi-build-cmake.md
- Python: build/backends/pixi-build-python.md
- rattler-build: build/backends/pixi-build-rattler-build.md
- ROS: build/backends/pixi-build-ros.md
- R: build/backends/pixi-build-r.md
- Rust: build/backends/pixi-build-rust.md
- Mojo: build/backends/pixi-build-mojo.md
- Key Concepts:
- Compilers: build/key_concepts/compilers.md
- Package Source: build/package_source.md
- Dev Packages: build/dev.md
- Distributing:
- Prefix.dev Channel: deployment/prefix.md
- Pixi Pack: deployment/pixi_pack.md
- Authentication: deployment/authentication.md
- Container: deployment/container.md
- S3: deployment/s3.md
- JFrog Artifactory: deployment/artifactory.md
- Integration:
- Editor:
- VSCode: integration/editor/vscode.md
- Jetbrains: integration/editor/jetbrains.md
- Zed: integration/editor/zed.md
- RStudio: integration/editor/r_studio.md
- JupyterLab: integration/editor/jupyterlab.md
- Continuous Integration:
- GitHub Actions: integration/ci/github_actions.md
- Pixi Diff-to-markdown: integration/ci/updates_github_actions.md
- Extensions:
- Introduction: integration/extensions/introduction.md
- Pixi Browse: integration/extensions/pixi_browse.md
- Pixi Diff: integration/extensions/pixi_diff.md
- Pixi Diff-to-markdown: integration/ci/updates_github_actions.md
- Pixi Inject: integration/extensions/pixi_inject.md
- Pixi Install-to-prefix: integration/extensions/pixi_install_to_prefix.md
- Pixi Pack: deployment/pixi_pack.md
- Pixi Skills: integration/extensions/pixi_skills.md
- Third Party:
- Conda Deny: integration/third_party/conda_deny.md
- Direnv: integration/third_party/direnv.md
- Starship: integration/third_party/starship.md
- Advanced:
- Security: security.md
- Channel Logic: advanced/channel_logic.md
- Info Command: advanced/explain_info_command.md
- Dependency Overrides: advanced/override.md
- Shebang: advanced/shebang.md
- Shell: advanced/pixi_shell.md
- Reference:
- Pixi Manifest: reference/pixi_manifest.md
- Pixi Configuration: reference/pixi_configuration.md
- CLI: reference/cli/pixi.md
- Environment Variables: reference/environment_variables.md
- Misc:
- Changelog: CHANGELOG.md
- Pixi Vision: misc/vision.md
- Packaging Pixi: misc/packaging.md
- Community: misc/Community.md
- FAQ: misc/FAQ.md
hooks:
- schema/docs_hooks.py
- install/docs_hooks.py
- docs/docs_hooks.py
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
anchors: warn
not_in_nav: |
reference/cli/
partials/
plugins:
- redirects:
redirect_maps:
"first_project.md": "first_workspace.md"
"configuration.md": "reference/pixi_manifest.md"
"reference/project_configuration.md": "reference/pixi_manifest.md"
"basic_usage.md": "getting_started.md"
"tutorials/python.md": "python/tutorial.md"
"features/environment.md": "workspace/environment.md"
"features/advanced_tasks.md": "workspace/advanced_tasks.md"
"features/multi_platform_configuration.md": "workspace/multi_platform_configuration.md"
"features/multi_environment.md": "workspace/multi_environment.md"
"features/lockfile.md": "workspace/lockfile.md"
"features/system_requirements.md": "workspace/system_requirements.md"
"features/global_tools.md": "global_tools/introduction.md"
"features/pytorch.md": "python/pytorch.md"
"ide_integration/jupyterlab.md": "integration/editor/jupyterlab.md"
"ide_integration/pycharm.md": "integration/editor/jetbrains.md"
"ide_integration/r_studio.md": "integration/editor/r_studio.md"
"ide_integration/devcontainer.md": "integration/editor/vscode.md"
"advanced/authentication.md": "deployment/authentication.md"
"advanced/channel_priority.md": "advanced/channel_logic.md"
"advanced/github_actions.md": "integration/ci/github_actions.md"
"advanced/updates_github_actions.md": "integration/ci/updates_github_actions.md"
"advanced/lockfile_diffs.md": "integration/extensions/pixi_diff.md"
"advanced/production_deployment.md": "deployment/container.md"
"advanced/pyproject_toml.md": "python/pyproject_toml.md"
"advanced/s3.md": "deployment/s3.md"
"advanced/third_party.md": "integration/third_party/starship.md"
"reference/cli.md": "reference/cli/pixi.md"
"vision.md": "misc/vision.md"
"packaging.md": "misc/packaging.md"
"Community.md": "misc/Community.md"
"FAQ.md": "misc/FAQ.md"
"integration/editor/devcontainer.md": "integration/editor/vscode.md"
"integration/editor/pycharm.md": "integration/editor/jetbrains.md"
"advanced/installation.md": "installation.md"
"overrides/override.md": "advanced/override.md"
# Redirects for links from code to make sure we don't break them.
# Using descriptive names that never existed, to avoid conflicts.
# crates/pixi_cli/src/init.rs
"init_getting_started.md": "first_workspace.md"
- search:
separator: '[\s\u200b\-_,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
- social:
cards_layout_dir: docs/layouts
cards_layout: custom
# Set debug to true to help troubleshoot social card generation issues
debug: false
- mike:
# These fields are all optional; the defaults are as below...
# alias_type: symlink
# redirect_template: null
# deploy_prefix: ''
canonical_version: latest
# version_selector: true
# css_dir: css
# javascript_dir: js
# llmstxt must come after the mike plugin:
- llmstxt:
enabled: !ENV [CI, false]
full_output: llms-full.txt
markdown_description: |-
Pixi is a fast, modern, and reproducible package management tool
for developers of all backgrounds. Pixi is a cross-platform package manager
and project management tool that creates reproducible environments using conda and PyPI packages.
To use Pixi, start by running `pixi init my_project` to create a new project with a `pixi.toml` manifest file,
then add dependencies using `pixi add package1 package2 ...` for conda packages
or `pixi add --pypi python_package ...` for PyPI packages. Pixi automatically generates a lockfile (`pixi.lock`)
to ensure reproducible environments across different systems.
You can define and run tasks using `pixi task add task_name "command arg1 arg2"` and `pixi run task_name`,
and work within the project's virtual environment using `pixi run` for single commands
or `pixi shell` for an interactive session.
The tool combines dependency management, task running, and environment isolation in a single workflow,
making it easy to share consistent development environments with others. See other documentation sections
for further details on how to use the software.
sections:
Getting Started documentation:
- index.md
- installation.md
- getting_started.md
- first_workspace.md
Tutorials documentation:
- python/*.md
- tutorials/*.md
- switching_from/*.md
- global_tools/introduction.md
Concepts documentation:
- workspace/*.md
- concepts/*.md
- global_tools/manifest.md
- global_tools/trampolines.md
Building documentation:
- build/*.md
Distributing documentation:
- deployment/*.md
Integration documentation:
- integration/**/*.md
Advanced documentation:
- advanced/*.md
Reference documentation:
- reference/*.md
Miscellaneous documentation:
- CHANGELOG.md
- misc/*.md
watch:
- docs/