Skip to content

Commit

Permalink
fix: Add overviews of HOT tech projects
Browse files Browse the repository at this point in the history
  • Loading branch information
rsavoye committed Feb 20, 2024
1 parent a895511 commit f4bbe19
Show file tree
Hide file tree
Showing 14 changed files with 37 additions and 0 deletions.
Binary file added docs/techdoc/overview/HOTComponentDiagram.odg
Binary file not shown.
Binary file added docs/techdoc/overview/HOTComponentDiagram.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/techdoc/overview/HOTConceptualDiagram.odg
Binary file not shown.
Binary file added docs/techdoc/overview/HOTConceptualDiagram.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/techdoc/overview/HOTInformationFlow.odg
Binary file not shown.
Binary file added docs/techdoc/overview/HOTInformationFlow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/techdoc/overview/HOTProcesses.odg
Binary file not shown.
Binary file added docs/techdoc/overview/HOTProcesses.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/techdoc/overview/HOTSolutionUser.odg
Binary file not shown.
Binary file added docs/techdoc/overview/HOTSolutionUser.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions docs/techdoc/overview/HOT_SolutionUser.drawio.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 33 additions & 0 deletions docs/techdoc/overview/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@


DRAW := $(wildcard *.odg)
PNGS := $(DRAW:.odg=.png)
DOCS := $(wildcard *.odt)
PDFS := $(DOCS:.odt=.pdf)

# Automate the building of pngs and pdfs from the libreoffice draw
# source files, insted of having to commit both to git after
# any changes.
all: pngs pdfs

pngs: $(PNGS)

pdfs: $(PDFS)

apidoc:
-@doxygen

%.png: %.odg
@echo "Generating $@ file for use in Markdown files"
-libreoffice --draw --headless --convert-to png "$<"
# -@mv *Profile.png images/

%.pdf: %.odt
@echo "Generating $@ file for use in Markdown files"
-libreoffice --draw --headless --convert-to pdf "$<"
# -@mv *Profile.png images

clean:
-$(RM) *.png *.pdf

force:

0 comments on commit f4bbe19

Please sign in to comment.