Skip to content

Commit 2f44f15

Browse files
committed
Merge branch 'main' of https://github.com/ProjectTech4DevAI/kaapi-frontend into feat/support-new-models-configuration
2 parents c9b737a + 419b9e7 commit 2f44f15

File tree

139 files changed

+20939
-14420
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

139 files changed

+20939
-14420
lines changed
Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
22
name: Bug report
33
about: Create a report to help us improve
4-
title: ''
5-
labels: ''
6-
assignees: ''
7-
4+
title: ""
5+
labels: ""
6+
assignees: ""
87
---
98

109
**Describe the bug**
1110
A clear and concise description of what the bug is.
1211

1312
**To Reproduce**
1413
Steps to reproduce the behavior:
14+
1515
1. Go to '...'
1616
2. Click on '....'
1717
3. Scroll down to '....'
@@ -24,15 +24,17 @@ A clear and concise description of what you expected to happen.
2424
If applicable, add screenshots to help explain your problem.
2525

2626
**Desktop (please complete the following information):**
27-
- OS: [e.g. iOS]
28-
- Browser [e.g. chrome, safari]
29-
- Version [e.g. 22]
27+
28+
- OS: [e.g. iOS]
29+
- Browser [e.g. chrome, safari]
30+
- Version [e.g. 22]
3031

3132
**Smartphone (please complete the following information):**
32-
- Device: [e.g. iPhone6]
33-
- OS: [e.g. iOS8.1]
34-
- Browser [e.g. stock browser, safari]
35-
- Version [e.g. 22]
33+
34+
- Device: [e.g. iPhone6]
35+
- OS: [e.g. iOS8.1]
36+
- Browser [e.g. stock browser, safari]
37+
- Version [e.g. 22]
3638

3739
**Additional context**
3840
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/enhancement-request.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
---
22
name: Enhancement Request
33
about: Describe this issue template's purpose here.
4-
title: ''
5-
labels: ''
6-
assignees: ''
7-
4+
title: ""
5+
labels: ""
6+
assignees: ""
87
---
98

109
**Describe the current behavior**

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
---
22
name: Feature request
33
about: Suggest an idea for this project
4-
title: ''
5-
labels: ''
6-
assignees: ''
7-
4+
title: ""
5+
labels: ""
6+
assignees: ""
87
---
98

109
**Is your feature request related to a problem? Please describe.**

.github/workflows/ci.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@ name: Kaapi CI
22

33
on:
44
push:
5-
branches:
6-
- main
5+
branches: [main]
76
pull_request:
8-
branches:
9-
- main
7+
branches: ["**"]
108

119
jobs:
1210
lint-and-build:
@@ -19,11 +17,14 @@ jobs:
1917
- name: Setup Node.js
2018
uses: actions/setup-node@v4
2119
with:
22-
cache: 'npm'
20+
cache: "npm"
2321

2422
- name: Install dependencies
2523
run: npm ci
2624

25+
- name: Check Formatting with Prettier
26+
run: npm run format:check
27+
2728
- name: Run Linting
2829
run: npm run lint
2930

.prettierignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
node_modules
2+
.next
3+
out
4+
build
5+
coverage
6+
dist
7+
.git
8+
.husky
9+
public/mock-data
10+
*.tsbuildinfo
11+
next-env.d.ts
12+
.prettierrc
13+
package-lock.json
14+
yarn.lock
15+
pnpm-lock.yaml

.prettierrc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"semi": true,
3+
"singleQuote": false,
4+
"tabWidth": 2,
5+
"trailingComma": "all",
6+
"printWidth": 80,
7+
"bracketSpacing": true,
8+
"arrowParens": "always",
9+
"endOfLine": "lf"
10+
}

app/coming-soon/guardrails/page.tsx renamed to app/(routes)/coming-soon/guardrails/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Guardrails - Coming Soon Page
33
*/
44

5-
import ComingSoon from '@/app/components/ComingSoon';
5+
import ComingSoon from "@/app/components/ComingSoon";
66

77
export default function GuardrailsPage() {
88
return (

app/coming-soon/model-testing/page.tsx renamed to app/(routes)/coming-soon/model-testing/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Model Testing - Coming Soon Page
33
*/
44

5-
import ComingSoon from '@/app/components/ComingSoon';
5+
import ComingSoon from "@/app/components/ComingSoon";
66

77
export default function ModelTestingPage() {
88
return (

app/coming-soon/redteaming/page.tsx renamed to app/(routes)/coming-soon/redteaming/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Redteaming - Coming Soon Page
33
*/
44

5-
import ComingSoon from '@/app/components/ComingSoon';
5+
import ComingSoon from "@/app/components/ComingSoon";
66

77
export default function RedteamingPage() {
88
return (

app/coming-soon/text-to-speech/page.tsx renamed to app/(routes)/coming-soon/text-to-speech/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Text-to-Speech - Coming Soon Page
33
*/
44

5-
import ComingSoon from '@/app/components/ComingSoon';
5+
import ComingSoon from "@/app/components/ComingSoon";
66

77
export default function TextToSpeechPage() {
88
return (

0 commit comments

Comments
 (0)