Skip to content

Commit 96bba62

Browse files
committed
Introduce React-based frontend for SlackWatch.
- Set up frontend structure with TypeScript and Vite. - Implement `WorkloadCard` component and API integration. - Update README with new development and deployment instructions.
1 parent b1caf97 commit 96bba62

34 files changed

+3087
-1674
lines changed

.gitignore

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# General
22
.DS_Store
3-
node_modules/
4-
dist/
53
*.log
64
*.env
75
.env.local
@@ -17,11 +15,6 @@ dist/
1715
*.swo
1816
*~
1917

20-
21-
# Svelte / TypeScript
22-
public/build/
23-
src/node_modules/
24-
2518
# Kubernetes
2619
*.kube
2720
*.k8s
@@ -30,12 +23,18 @@ src/node_modules/
3023
docker-compose*.yml
3124
*.dockerignore
3225

33-
# Dioxus
34-
.dioxus/
35-
.slackwatch/
26+
# React
27+
/frontend/node_modules/
28+
/frontend/dist/
29+
/frontend/.vite/
30+
npm-debug.log*
31+
yarn-debug.log*
32+
yarn-error.log*
3633

3734
# Rust
38-
.target/
35+
/target/
36+
**/*.rs.bk
37+
Cargo.lock
3938

4039
#mdbook
4140
book/

0 commit comments

Comments
 (0)