Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
build.postmarketos.org
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
postmarketOS
build.postmarketos.org
Merge requests
!105
docs: creation of basic structure
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Imported
docs: creation of basic structure
docs
into
master
Overview
23
Commits
5
Pipelines
29
Changes
18
All threads resolved!
Hide all comments
Merged
Imported
Administrator
requested to merge
docs
into
master
10 months ago
Overview
23
Commits
5
Pipelines
29
Changes
18
All threads resolved!
Hide all comments
Expand
initial adding of config (based on pmb/docs)
0
0
Merge request reports
Compare
master
version 16
a5a8f380
5 months ago
version 15
f9aec85e
5 months ago
version 14
84e144c4
5 months ago
version 13
210528e5
5 months ago
version 12
3de53491
5 months ago
version 11
d44cc09b
5 months ago
version 10
e52c5254
5 months ago
version 9
80edfeee
5 months ago
version 8
7bc8db03
5 months ago
version 7
d0edd56c
5 months ago
version 6
f38507d5
5 months ago
version 5
f6c087c6
5 months ago
version 4
915f4fe1
5 months ago
version 3
c8008de0
5 months ago
version 2
e7909777
5 months ago
version 1
e7909777
5 months ago
master (base)
and
version 1
latest version
b539c5f0
5 commits,
4 months ago
version 16
a5a8f380
5 commits,
5 months ago
version 15
f9aec85e
6 commits,
5 months ago
version 14
84e144c4
6 commits,
5 months ago
version 13
210528e5
7 commits,
5 months ago
version 12
3de53491
7 commits,
5 months ago
version 11
d44cc09b
6 commits,
5 months ago
version 10
e52c5254
5 commits,
5 months ago
version 9
80edfeee
15 commits,
5 months ago
version 8
7bc8db03
14 commits,
5 months ago
version 7
d0edd56c
12 commits,
5 months ago
version 6
f38507d5
11 commits,
5 months ago
version 5
f6c087c6
10 commits,
5 months ago
version 4
915f4fe1
9 commits,
5 months ago
version 3
c8008de0
8 commits,
5 months ago
version 2
e7909777
7 commits,
5 months ago
version 1
e7909777
7 commits,
5 months ago
18 files
+
393
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
18
Search (e.g. *.vue) (Ctrl+P)
.ci/docs.sh
0 → 100755
+
27
−
0
Options
#!/bin/sh -e
# Description: create documentation with sphinx
# Options: native
# https://postmarketos.org/pmb-ci
# Ensure sphinx_rtd_theme is installed
if
[
"
$(
id
-u
)
"
=
0
]
;
then
set
-x
apk
-q
add
\
py3-myst-parser
\
py3-sphinx_rtd_theme
\
py3-sphinxcontrib-autoprogram
exec
su
"
${
TESTUSER
:-
pmos
}
"
-c
"sh -e
$0
"
fi
# Require sphinx to be installed on the host system
if
[
-z
"
$(
command
-v
sphinx-build
)
"
]
;
then
echo
"ERROR: sphinx-build command not found, make sure it is in your PATH."
exit
1
fi
sphinx-build
\
docs
\
public
\
# -E -a -v -T
Loading