Skip to content
This repository was archived by the owner on Dec 10, 2025. It is now read-only.

Commit 31f5202

Browse files
committed
initial import
1 parent d7ae246 commit 31f5202

File tree

5 files changed

+25
-3
lines changed

5 files changed

+25
-3
lines changed

.github/workflows/build.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: build
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
doc:
7+
runs-on: ubuntu-latest
8+
strategy:
9+
matrix:
10+
python-version: ['3.13']
11+
steps:
12+
- uses: actions/checkout@v4
13+
- name: Set up Python ${{ matrix.python-version }}
14+
uses: actions/setup-python@v5
15+
with:
16+
python-version: ${{ matrix.python-version }}
17+
cache: pip
18+
- name: build docs
19+
run: |
20+
python -m pip install mkdocs-material
21+
mkdocs build -s -d /tmp/neodb-docs

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
this is documentation for [NeoDB official site](https://neodb.net), see [neodb](../neodb) for server source code.
1+
this repo is for [NeoDB official site](https://neodb.net); for neodb server, see [github](https://github.com/neodb-social/neodb) or [codeberg](https://codeberg.org/NeoDB/neodb).
22

docs/apps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ A few apps for NeoDB are being actively developed:
99
- [Piecelet](https://piecelet.app) by `@piecelet@mastodon.social` - [App Store](https://apps.apple.com/app/piecelet-for-neodb/id6739444863) / [Source Code](https://github.com/lcandy2/neodb-app)
1010
- [Chihu](https://chihu.app) by `@chihu@mastodon.social` - [Test Flight](https://testflight.apple.com/join/WmbnP9Vx)
1111

12-
These apps are not affiliated with NeoDB, but they are being developed with the support of this community. If you are also developing an app for NeoDB, and wish to share that with the community, please [edit this file](https://github.com/neodb-social/neodb/edit/main/docs/apps.md) and submit a pull request.
12+
These apps are not affiliated with NeoDB, but they are being developed with the support of this community. If you are also developing an app for NeoDB, and wish to share that with the community, please [edit this file](https://github.com/neodb-social/neodb-doc/edit/main/docs/apps.md) and submit a pull request.
1313

1414

1515
## Mastodon apps

docs/servers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ NeoDB is not a single website. To use it, you need to sign up on an instance, th
77

88
{servers}
99

10-
JSON version of this list is also available [here](servers.json). If you are hosting a public instance of NeoDB and wish to share that with the community, please [edit this file](https://github.com/neodb-social/neodb/edit/main/docs/servers.json) and submit a pull request.
10+
JSON version of this list is also available [here](servers.json). If you are hosting a public instance of NeoDB and wish to share that with the community, please [edit this file](https://github.com/neodb-social/neodb-doc/edit/main/docs/servers.json) and submit a pull request.
1111

1212
To host your own instance of NeoDB, see [installation guide](install.md).
1313

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
mkdocs-material

0 commit comments

Comments
 (0)