Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
b125b87
feat: upgrade tailwindcss 4 & shadcn components
dacsang97 Oct 3, 2025
39b9ef5
feat(chart): add ChartContainer and related components for enhanced c…
dacsang97 Oct 3, 2025
c668601
feat: add devcontainer setup with Dockerfile, docker-compose, and env…
dacsang97 Oct 3, 2025
f715ace
feat: Enhance Docker setup with Nginx and ModSecurity integration
dacsang97 Oct 3, 2025
ce169d6
feat: integrate @tanstack/react-table for enhanced log management and…
dacsang97 Oct 3, 2025
6f001d3
feat(dashboard): enhance dashboard with chart components for CPU and …
dacsang97 Oct 3, 2025
d306f9c
fix: chart ui
dacsang97 Oct 3, 2025
2d8958a
feat: update dependencies and add @tanstack/react-router and related …
dacsang97 Oct 3, 2025
8c7e0f0
feat: enhance navigation with active route highlighting
dacsang97 Oct 3, 2025
ae2858f
feat: Implement query options and hooks for logs, modsec, performance…
dacsang97 Oct 3, 2025
5f05c9e
Merge branch 'main' into tailwind-4
dacsang97 Oct 4, 2025
7c15788
feat: add tw-animate-css dependency and update styles in index.css
dacsang97 Oct 4, 2025
2b16ae9
feat: remove staleTime, gcTime, and retry options from query options …
dacsang97 Oct 4, 2025
42b86ae
feat: streamline dashboard data prefetching by removing unnecessary q…
dacsang97 Oct 4, 2025
97b8a8b
feat: implement suspense loading for domains and installation status,…
dacsang97 Oct 4, 2025
22e3843
feat: add user management page with CRUD functionality
dacsang97 Oct 4, 2025
b329842
feat: refactor ModSecurity component to use query hooks and improve d…
dacsang97 Oct 4, 2025
a237b3d
feat: use suspense & prefetch
dacsang97 Oct 4, 2025
f210d4b
feat: remove loading state management in various components and repla…
dacsang97 Oct 4, 2025
d931625
feat: enhance domains management with pagination, search, and filteri…
dacsang97 Oct 4, 2025
dbc177c
feat: refactor domain service to improve API response handling and ad…
dacsang97 Oct 4, 2025
145d9a3
feat: enhance performance service with debug logging and response val…
dacsang97 Oct 4, 2025
1521f4a
feat: remove debug logging from domain fetching in Performance component
dacsang97 Oct 4, 2025
afc4889
feat: update CSS variables for improved theming and typography consis…
dacsang97 Oct 4, 2025
659a373
feat: update chart colors in Dashboard component for improved visual …
dacsang97 Oct 4, 2025
5a759be
feat: enhance SSLTable and SSLDialog components with improved user me…
dacsang97 Oct 4, 2025
4772fff
feat: add reload functionality to Logs component with refetch support
dacsang97 Oct 4, 2025
b70beb9
feat: improve log fetching and pagination logic in Logs component
dacsang97 Oct 4, 2025
e586e29
feat: refactor performance service to remove debug logging and improv…
dacsang97 Oct 4, 2025
00beef2
feat: add UnderConstructionBanner component and integrate it into Bac…
dacsang97 Oct 4, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ build
# Environment
*.local
.env*.local
.devcontainer/.env

# Lock files (using pnpm)
package-lock.json
Expand All @@ -41,4 +42,5 @@ yarn.lock
*.sln
*.sw?
landing/*
.env
.env
.pnpm-store/
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM nginx:alpine

# Copy custom nginx config
COPY ./config/nginx.conf /etc/nginx/conf.d/default.conf

# Expose port 8088
EXPOSE 8088

# Health check
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
CMD wget --no-verbose --tries=1 --spider http://localhost:8088/ || exit 1

CMD ["nginx", "-g", "daemon off;"]
Loading