Skip to content

Commit 3931f78

Browse files
committed
WIP
1 parent 8d3a631 commit 3931f78

File tree

7 files changed

+840
-2
lines changed

7 files changed

+840
-2
lines changed

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ test:
99
clean:
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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 \

documentation/08-uis/02-web-components/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,7 @@
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/

ui/biome.json

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
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+
}

0 commit comments

Comments
 (0)