Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
00e883e3eb | |||
ad82b49371 | |||
f7a5f5e077 | |||
bafb7a96aa | |||
2758e95bc5 | |||
cad768627f | |||
8129187bd9 |
@ -17,6 +17,7 @@ steps:
|
|||||||
- apt-get -y install texlive-lang-german
|
- apt-get -y install texlive-lang-german
|
||||||
- pip install -r requirements.txt
|
- pip install -r requirements.txt
|
||||||
- make latexpdf
|
- make latexpdf
|
||||||
|
- make html
|
||||||
|
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
@ -49,7 +50,7 @@ steps:
|
|||||||
from_secret: username
|
from_secret: username
|
||||||
FTP_PASSWORD:
|
FTP_PASSWORD:
|
||||||
from_secret: password
|
from_secret: password
|
||||||
FTP_HOSTNAME:
|
PLUGIN_HOSTNAME:
|
||||||
from_secret: hostname
|
from_secret: hostname
|
||||||
PLUGIN_SRC_DIR: /build/html
|
PLUGIN_SRC_DIR: /build/html
|
||||||
PLUGIN_DEST_DIR: /home/pacs/sib00/users/swingbe_fffleet/doms/fffleet.swingbe.de/subs-ssl/www
|
PLUGIN_DEST_DIR: /home/pacs/sib00/users/swingbe_fffleet/doms/fffleet.swingbe.de/subs-ssl/www
|
||||||
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,3 +1,5 @@
|
|||||||
|
bundle
|
||||||
build
|
build
|
||||||
venv
|
venv
|
||||||
*.*~
|
*.*~
|
||||||
|
*~
|
@ -16,5 +16,19 @@ help:
|
|||||||
|
|
||||||
# Catch-all target: route all unknown targets to Sphinx using the new
|
# Catch-all target: route all unknown targets to Sphinx using the new
|
||||||
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
|
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
|
||||||
%: Makefile
|
%: makefile
|
||||||
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|
||||||
|
|
||||||
|
.PHONY: sphinx bundle
|
||||||
|
|
||||||
|
clean:
|
||||||
|
-rm -rf build
|
||||||
|
-rm -rf bundle
|
||||||
|
|
||||||
|
sphinx:
|
||||||
|
$(MAKE) singlehtml latexpdf
|
||||||
|
|
||||||
|
bundle: sphinx
|
||||||
|
-mkdir bundle
|
||||||
|
cp build/latex/*.pdf bundle/
|
||||||
|
rsync -av --delete build/singlehtml/ bundle/html
|
11
readme.md
11
readme.md
@ -63,15 +63,20 @@ The output files of the final handbook can be found in the subfolder `./build`.
|
|||||||
|
|
||||||
All generated intermediate artifacts and the final output files can be found in the `./build` subfolder.
|
All generated intermediate artifacts and the final output files can be found in the `./build` subfolder.
|
||||||
|
|
||||||
|
Generate all output like this.
|
||||||
|
|
||||||
|
```
|
||||||
|
make bundle
|
||||||
|
```
|
||||||
|
|
||||||
### Clean up
|
### Clean up
|
||||||
|
|
||||||
1. Deactivate the virtual Python environment: ```deactivate```
|
1. Deactivate the virtual Python environment: ```deactivate```
|
||||||
2. Clean up the build sources: ```make clean``` and ```rm -r build bundle```
|
2. Clean up the build sources: ```make clean```
|
||||||
|
|
||||||
# File System
|
# File System
|
||||||
|
|
||||||
* `build`: build directory
|
* `build`: build directory
|
||||||
* `make.bat`:
|
* `Makefile`: build configuration
|
||||||
* `Makefile`:
|
|
||||||
* `readme.md`: this file
|
* `readme.md`: this file
|
||||||
* `source`: source directory
|
* `source`: source directory
|
||||||
|
@ -22,7 +22,7 @@ copyright = '2022, <tdb>'
|
|||||||
author = 'Software Ingenieur Begerad (SIB)'
|
author = 'Software Ingenieur Begerad (SIB)'
|
||||||
|
|
||||||
# The full version, including alpha/beta/rc tags
|
# The full version, including alpha/beta/rc tags
|
||||||
release = '0.1.0'
|
release = '0.1.2'
|
||||||
|
|
||||||
|
|
||||||
# -- General configuration ---------------------------------------------------
|
# -- General configuration ---------------------------------------------------
|
||||||
|
@ -2,10 +2,14 @@
|
|||||||
|
|
||||||
//TODO tbc
|
//TODO tbc
|
||||||
|
|
||||||
|
## Systemumgebung
|
||||||
|
|
||||||
|
//TODO tbc
|
||||||
|
|
||||||
## Systemkontext
|
## Systemkontext
|
||||||
|
|
||||||
//TODO tbc
|
//TODO tbc
|
||||||
|
|
||||||
## Systemumgebung
|
## Systembeschreibung
|
||||||
|
|
||||||
//TODO tbc
|
//TODO tbc
|
Reference in New Issue
Block a user