File tree Expand file tree Collapse file tree 7 files changed +840
-2
lines changed
documentation/08-uis/02-web-components Expand file tree Collapse file tree 7 files changed +840
-2
lines changed Original file line number Diff line number Diff line change 99clean :
1010 @rm -rf build/
1111
12- build : clean
12+ build-ui :
13+ @cd ui && npm run build
14+
15+ build : clean build-ui
1316 @GOOS=darwin GOARCH=amd64 go build -o ./build/techlounge-darwin-amd64 main.go
1417 @GOOS=darwin GOARCH=arm64 go build -o ./build/techlounge-darwin-arm64 main.go
1518 @GOOS=linux GOARCH=amd64 go build -o ./build/techlounge-linux-amd64 main.go
@@ -23,6 +26,7 @@ build-docker:
2326.PHONY : analyze \
2427 build \
2528 build-docker \
29+ build-ui \
2630 clean \
2731 qa \
2832 test
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ docker run \
77 -it \
88 --init \
99 -p 3000:3000 \
10- thenativeweb/eventsourcingdb:1.0.1 \
10+ thenativeweb/eventsourcingdb:1.2.0 \
1111 run \
1212 --api-token secret \
1313 --data-directory-temporary \
Original file line number Diff line number Diff line change 3232- HTML-Templates
3333 - Das ` <template>...</template> ` -Element
3434 - Erfordert das Klonen von Knoten im DOM, fühlt sich an wie 1995
35+
36+ ## Links
37+
38+ - https://rgbcu.be/blog/gitignore/
Original file line number Diff line number Diff line change 1+ {
2+ "$schema" : " ./node_modules/@biomejs/biome/configuration_schema.json" ,
3+ "files" : {
4+ "includes" : [" src/**" , " !dist/**" , " !node_modules/**" ]
5+ },
6+ "formatter" : {
7+ "enabled" : true ,
8+ "formatWithErrors" : false ,
9+ "indentStyle" : " tab" ,
10+ "indentWidth" : 2 ,
11+ "lineEnding" : " lf" ,
12+ "lineWidth" : 100
13+ },
14+ "javascript" : {
15+ "formatter" : {
16+ "arrowParentheses" : " asNeeded" ,
17+ "bracketSameLine" : true ,
18+ "bracketSpacing" : true ,
19+ "jsxQuoteStyle" : " single" ,
20+ "quoteProperties" : " asNeeded" ,
21+ "quoteStyle" : " single" ,
22+ "semicolons" : " always" ,
23+ "trailingCommas" : " all"
24+ }
25+ },
26+ "json" : {
27+ "formatter" : {
28+ "enabled" : true ,
29+ "indentStyle" : " tab" ,
30+ "indentWidth" : 2 ,
31+ "lineEnding" : " lf" ,
32+ "lineWidth" : 100
33+ }
34+ },
35+ "linter" : {
36+ "domains" : {
37+ "test" : " all"
38+ },
39+ "enabled" : true ,
40+ "rules" : {
41+ "complexity" : " on" ,
42+ "correctness" : {
43+ "noPrivateImports" : " off"
44+ },
45+ "performance" : " on" ,
46+ "security" : " on" ,
47+ "suspicious" : " on" ,
48+ "style" : {
49+ "useFilenamingConvention" : " off"
50+ }
51+ }
52+ },
53+ "assist" : {
54+ "actions" : {
55+ "source" : {
56+ "organizeImports" : " on"
57+ }
58+ }
59+ }
60+ }
You can’t perform that action at this time.
0 commit comments