Skip to content

Commit ad3cc5e

Browse files
committed
Use Zensical for docs
1 parent 0018bd7 commit ad3cc5e

13 files changed

Lines changed: 3203 additions & 11 deletions

File tree

.github/workflows/docs.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Documentation
2+
on:
3+
push:
4+
branches:
5+
- master
6+
- main
7+
permissions:
8+
contents: read
9+
pages: write
10+
id-token: write
11+
jobs:
12+
deploy:
13+
environment:
14+
name: github-pages
15+
url: ${{ steps.deployment.outputs.page_url }}
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: actions/configure-pages@v6
19+
- uses: actions/checkout@v6
20+
- uses: actions/setup-python@v6
21+
with:
22+
python-version: 3.x
23+
- run: pip install zensical
24+
- run: zensical build --clean
25+
- uses: actions/upload-pages-artifact@v5
26+
with:
27+
path: site
28+
- uses: actions/deploy-pages@v5
29+
id: deployment

backend/pyproject.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,6 @@ dev = [
4747
requires = ["hatchling"]
4848
build-backend = "hatchling.build"
4949

50-
[tool.uv.workspace]
51-
members = ["packages/*"]
52-
5350
[tool.isort]
5451
profile = "black"
5552

devenv.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
uv.enable = true;
3030
uv.sync.enable = true;
3131
venv.enable = true;
32-
directory = "backend";
3332
};
3433

3534
languages.javascript = {

docs/assets/images/icon.svg

Lines changed: 11 additions & 0 deletions
Loading

docs/client/getting_started.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Getting started

docs/client/reference/client.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
::: acidwatch.client.Client

docs/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# AcidWatch
2+
13
AcidWatch is a tool designed to empower researchers, chemists, and industry
24
professionals by providing a single interface to access many models, each
35
capable of calculating and/or predicting chemical reactions involving impurities

docs/server/getting_started.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Getting started
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)