Skip to content

Commit 33c655a

Browse files
authored
Merge pull request #3 from chip-cookie/claude/analyze-project-Hqitd
Claude/analyze project hqitd
2 parents 0536e6d + 8fdc1d4 commit 33c655a

26 files changed

Lines changed: 1241 additions & 1044 deletions

.github/workflows/deploy.yml

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
name: Deploy
2+
3+
on:
4+
push:
5+
branches: [main]
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: read
10+
pages: write
11+
id-token: write
12+
13+
concurrency:
14+
group: ${{ github.workflow }}-${{ github.ref }}
15+
cancel-in-progress: true
16+
17+
jobs:
18+
build:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: Checkout repository
22+
uses: actions/checkout@v4
23+
24+
- name: Set up Node
25+
uses: actions/setup-node@v4
26+
with:
27+
node-version: 20.x
28+
cache: 'npm'
29+
cache-dependency-path: front/package-lock.json
30+
31+
- name: Setup Pages
32+
uses: actions/configure-pages@v4
33+
34+
- name: Install dependencies
35+
working-directory: front
36+
run: npm ci
37+
38+
- name: Build with Vite
39+
working-directory: front
40+
run: npm run build
41+
env:
42+
NODE_ENV: production
43+
VITE_BASE_URL: /${{ github.event.repository.name }}/
44+
45+
- name: Upload artifact
46+
uses: actions/upload-pages-artifact@v3
47+
with:
48+
path: ./front/dist
49+
50+
deploy:
51+
environment:
52+
name: github-pages
53+
url: ${{ steps.deployment.outputs.page_url }}
54+
runs-on: ubuntu-latest
55+
needs: build
56+
steps:
57+
- name: Deploy to GitHub Pages
58+
id: deployment
59+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,18 @@ data/
5454
!data/learning/styles/README.md
5555
uploads/
5656

57+
# ML / Vector Index artifacts
58+
*.faiss
59+
*.pkl
60+
*.bin
61+
*.safetensors
62+
RAG/faiss_index/
63+
64+
# Large media & documents
65+
*.pdf
66+
*.pptx
67+
*.ppt
68+
5769
# OS
5870
.DS_Store
5971
Thumbs.db

RAG/RAG_chatbot_ppt.pdf

-6.02 MB
Binary file not shown.

RAG/faiss_index/index.faiss

-23.9 MB
Binary file not shown.

RAG/faiss_index/index.pkl

-6.02 MB
Binary file not shown.

0 commit comments

Comments
 (0)