Skip to content

Commit 8b933c7

Browse files
committed
re-org code
1 parent 77e9af1 commit 8b933c7

38 files changed

Lines changed: 211 additions & 49 deletions

.github/workflows/build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ name: build
55

66
on:
77
push:
8-
branches: ["main"]
8+
branches: [ "main" ]
99
pull_request:
10-
branches: ["main"]
10+
branches: [ "main" ]
1111

1212
jobs:
1313
build:
@@ -21,12 +21,14 @@ jobs:
2121
node-version: 20.x
2222
cache: "npm"
2323
- run: npm ci
24+
working-directory: ./chat-agent-ui
2425
- run: npm run build --if-present
26+
working-directory: ./chat-agent-ui
2527
- name: Set up JDK
2628
uses: actions/setup-java@v3
2729
with:
2830
java-version: "21"
2931
distribution: "temurin"
3032
cache: maven
3133
- name: Build with Maven
32-
run: mvn --batch-mode package
34+
run: mvn -B -ntp package

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright [yyyy] [name of copyright owner]
189+
Copyright 2025 Fu Cheng
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

chat-agent-ui/.gitignore

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
.yarn/install-state.gz
8+
9+
# testing
10+
/coverage
11+
12+
# next.js
13+
/.next/
14+
/out/
15+
16+
# production
17+
/build
18+
/dist
19+
20+
# misc
21+
.DS_Store
22+
*.pem
23+
24+
# debug
25+
npm-debug.log*
26+
yarn-debug.log*
27+
yarn-error.log*
28+
29+
# local env files
30+
.env*.local
31+
32+
# vercel
33+
.vercel
34+
35+
# typescript
36+
*.tsbuildinfo
37+
next-env.d.ts
38+
39+
target
40+
.idea
File renamed without changes.

0 commit comments

Comments
 (0)