-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
carbon gray theme w docker and new plantuml jar
- Loading branch information
1 parent
7c664f9
commit ee1629f
Showing
47 changed files
with
51,757 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM openjdk:17-alpine | ||
RUN \ | ||
apk update && \ | ||
apk upgrade && \ | ||
apk add --no-cache \ | ||
graphviz \ | ||
font-noto-cjk \ | ||
&& \ | ||
rm -rf /var/cache/apk/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
version: '3.3' | ||
|
||
services: | ||
puml-themes: | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
container_name: puml-themes | ||
working_dir: /puml-themes | ||
command: ['/bin/sh', '-c', '[ -z ${THEME} ] || [ ${THEME} = "all" ] && echo "set the THEME variable to build desired theme; Building all themes" && bin/buildall.sh || bin/build.sh ${THEME}'] | ||
volumes: | ||
- .:/puml-themes | ||
stdin_open: true | ||
tty: true | ||
privileged: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
@startuml | ||
|
||
!if %variable_exists("$THEME") | ||
title Activity Diagram - $THEME theme | ||
!else | ||
title Activity Diagram | ||
!endif | ||
|
||
start | ||
:init; | ||
-> test of color; | ||
if (color?) is (<color:red>red) then | ||
:print red; | ||
else | ||
:print not red; | ||
note right: no color | ||
endif | ||
partition End { | ||
:end; | ||
} | ||
-> this is the end; | ||
end | ||
@enduml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.