Skip to content

Commit e47230e

Browse files
👻 setup biome
Signed-off-by: Carlos Feria <[email protected]>
1 parent f4c3720 commit e47230e

File tree

4 files changed

+24
-4
lines changed

4 files changed

+24
-4
lines changed

.devcontainer/devcontainer.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@
2626
"dsznajder.es7-react-js-snippets",
2727
"biomejs.biome",
2828
"GitHub.vscode-github-actions"
29-
]
29+
],
30+
"settings": {
31+
"biome.searchInPath": false,
32+
"biome.lspBin": "server/ui/node_modules/@biomejs/cli-linux-x64/biome"
33+
}
3034
}
3135
}
3236
}

.devcontainer/postCreateCommand.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# cd /workspace/server/ui && npm ci --ignore-scripts
2-
corepack enable pnpm
2+
# corepack enable pnpm

.github/dependabot.yml

+13-2
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,23 @@ updates:
77
schedule:
88
interval: "weekly"
99
commit-message:
10-
prefix: ":seedling: "
10+
prefix: ":ghost: "
1111

1212
# Maintain dependencies for Cargo.toml
1313
- package-ecosystem: "cargo"
1414
directory: "/"
1515
schedule:
1616
interval: "weekly"
1717
commit-message:
18-
prefix: ":seedling: "
18+
prefix: ":ghost: "
19+
20+
# Maintain dependencies for NPM
21+
- package-ecosystem: "npm"
22+
directory: "/server/ui"
23+
schedule:
24+
interval: "weekly"
25+
commit-message:
26+
prefix: ":ghost: "
27+
allow:
28+
- dependency-name: "@patternfly/*"
29+
dependency-type: "direct"

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,17 @@ XMLs basados en UBL y SUNAT
1717
cargo run --bin server
1818
```
1919

20+
- The server is running at http://localhost:8080
21+
- You can see Swagger UI at http://localhost:8080/swagger-ui
22+
2023
## Server UI
2124

2225
```shell
2326
npm run dev --prefix server/ui
2427
```
2528

29+
- The UI running at http://localhost:3000
30+
2631
## License
2732

2833
- [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0)

0 commit comments

Comments
 (0)