Compare commits

...

4 commits

Author SHA1 Message Date
selfhoster1312
5f45e8f280 docs: Yarn and npm were mixed up 2025-03-03 11:28:57 +00:00
selfhoster1312
1fb3573078 docs: Embed snippets in docs/changelog.md 2025-03-03 11:28:57 +00:00
selfhoster1312
a94494a76f docs: Add internal to "Getting started" for selfhosting 2025-03-03 11:28:57 +00:00
selfhoster1312
550f89243f fix: Add local dev dependencies (mkdocs/theme/sendria) 2025-03-03 11:28:57 +00:00
5 changed files with 8 additions and 13 deletions

View file

@ -1,11 +1 @@
# Changelog --8<-- "CHANGELOG.md"
Given a version number `MAJOR`.`MINOR`.`PATCH`:
- `MAJOR` is updated when there are **incompatible changes**,
- `MINOR` is updated when there are **backwards-compatible feature additions**,
- `PATCH` is updated when there are **backwards-compatible bug fixes**.
### 1.0.0 (date)
- Basic features.

View file

@ -4,6 +4,7 @@
This page describes how the main instance is deployed, and is mainly meant as a This page describes how the main instance is deployed, and is mainly meant as a
way to share the knowledge. You can obviously do things differently. way to share the knowledge. You can obviously do things differently.
See the [Getting Started](install.md) page for more information on selfhosting.
## Services ## Services

View file

@ -32,13 +32,13 @@ pip install -e ".[dev]"
And the frontend dependencies: And the frontend dependencies:
=== "Yarn" === "npm"
```bash ```bash
npm install npm install
``` ```
=== "npm" === "Yarn"
```bash ```bash
yarn install yarn install
``` ```

View file

@ -45,3 +45,4 @@ markdown_extensions:
- pymdownx.tabbed: - pymdownx.tabbed:
alternate_style: true alternate_style: true
combine_header_slug: true combine_header_slug: true
- pymdownx.snippets

View file

@ -39,6 +39,9 @@ build-backend = "setuptools.build_meta"
[project.optional-dependencies] [project.optional-dependencies]
dev = [ dev = [
"mkdocs>=1.6",
"mkdocs-material>=9.6",
"sendria>=2.2",
"pytest>=7,<8", "pytest>=7,<8",
"pip-tools>=6,<7", "pip-tools>=6,<7",
"pytest-isort>=3,<4", "pytest-isort>=3,<4",