Commit graph

166 commits

Author SHA1 Message Date
Tracewebstudio Dev
bb6db6c166 fix: correct API endpoint paths from /api/gateway/api to /api
- signup.tsx: fix check-email, register, verify-email, resend-otp paths
- login.tsx: fix check-email, login, resend-otp, verify-email paths
- forgot-password.tsx: fix forgot-password, reset-password paths
- contact.tsx: fix support/tickets path

The gateway expects /api/auth/... but frontend was calling /api/gateway/api/auth/...
2026-04-17 17:00:10 +02:00
Tracewebstudio Dev
34f46f09bd fix: route auth register via gateway proxy 2026-04-17 11:56:08 +02:00
Tracewebstudio Dev
bda6d495bc ci: fix kaniko builds and base images 2026-04-17 03:04:01 +02:00
Tracewebstudio Dev
221df53a1e ci: build and push with kaniko 2026-04-17 03:00:36 +02:00
Tracewebstudio Dev
2576dbe5b5 ci: stop treating registry host as secret 2026-04-17 02:39:50 +02:00
Tracewebstudio Dev
6adea89da1 ci: trigger woodpecker (2026-04-17-2) 2026-04-17 02:26:26 +02:00
Tracewebstudio Dev
8367bba802 ci: wire woodpecker registry secrets 2026-04-17 02:05:50 +02:00
Tracewebstudio Dev
40ca36a923 ci: trigger woodpecker (2026-04-17) 2026-04-17 02:02:55 +02:00
Tracewebstudio Dev
a82c469f06 ci: fix woodpecker registry secrets and base images 2026-04-17 01:42:07 +02:00
Tracewebstudio Dev
7750d52750 ci: trigger woodpecker 2026-04-17 01:29:30 +02:00
Tracewebstudio Dev
c953b07b62 ci: trigger woodpecker 2026-04-17 01:26:51 +02:00
Tracewebstudio Dev
733a7ff8bb ci: explicitly wire secrets with from_secret in environment 2026-04-17 01:10:53 +02:00
Tracewebstudio Dev
be8d11f762 ci: fix secrets injection using secrets: block 2026-04-17 01:01:46 +02:00
Tracewebstudio Dev
f8e8dc8240 ci: use docker cli directly - images already in registry 2026-04-17 00:51:46 +02:00
Tracewebstudio Dev
9ba7399b01 ci: use registry.nxtgauge.com/kaniko:2.1.1 explicitly 2026-04-17 00:45:17 +02:00
Tracewebstudio Dev
6c44a40763 ci: use kaniko:2.1.1 from registry 2026-04-17 00:41:10 +02:00
Tracewebstudio Dev
a636daae8f ci: use kaniko, registry host from secret, remove hardcoded values 2026-04-17 00:38:21 +02:00
Tracewebstudio Dev
9a88a867bb ci: pull docker cli from registry.nxtgauge.com instead of Docker Hub 2026-04-17 00:35:32 +02:00
Tracewebstudio Dev
acfb5d0529 ci: use docker cli instead of kaniko 2026-04-17 00:09:33 +02:00
Tracewebstudio Dev
cf69bb63f5 ci: fix kaniko image path - use registry.nxtgauge.com/kaniko:2.1.1 2026-04-17 00:05:37 +02:00
Tracewebstudio Dev
281f4ddd35 ci: use kaniko from registry.nxtgauge.com instead of Docker Hub 2026-04-16 23:58:50 +02:00
Tracewebstudio Dev
687947d734 ci: use registry.nxtgauge.com without port (server fixed) 2026-04-16 23:21:24 +02:00
Tracewebstudio Dev
4de359b048 ci: revert to registry.nxtgauge.com:5000 (from 4d6de95 - working config) 2026-04-16 23:08:08 +02:00
Tracewebstudio Dev
af074fd649 ci: revert to woodpeckerci plugin-kaniko from Docker Hub 2026-04-16 22:38:36 +02:00
Tracewebstudio Dev
95130d52cb ci: use kaniko from registry.nxtgauge.com 2026-04-16 22:28:30 +02:00
Tracewebstudio Dev
736292dbab ci: revert frontend to direct kaniko build (no crane) 2026-04-16 22:16:41 +02:00
Tracewebstudio Dev
d26f0bf1a9 ci: mirror node:20-alpine first, then build frontend 2026-04-16 21:33:04 +02:00
Tracewebstudio Dev
2d7117a47a fix(ci): use internal registry for node:20-alpine base image
- Change FROM node:20-alpine to FROM registry.nxtgauge.com/node:20-alpine
- Update both Dockerfile and Dockerfile.simple
- Fixes Docker Hub rate limiting errors in Woodpecker builds

Images to mirror:
- docker pull node:20-alpine
- docker tag node:20-alpine registry.nxtgauge.com/node:20-alpine
- docker push registry.nxtgauge.com/node:20-alpine
2026-04-16 19:30:25 +02:00
Tracewebstudio Dev
152f918a7b fix(auth): correct resend-otp API endpoint path
- Change from /api/gateway/api/auth/resend-otp to /api/auth/resend-otp
- Fix in signup.tsx and login.tsx
- Gateway already proxies /api/auth/* to users service
2026-04-16 17:29:46 +02:00
Tracewebstudio Dev
a365e1fa94 fix(build): include devDependencies in npm ci
- Add --include=dev flag to npm ci to install devDependencies
- Fix ERR_MODULE_NOT_FOUND for @tailwindcss/vite during build
2026-04-16 11:11:54 +02:00
Tracewebstudio Dev
80fb6aa9b4 fix(build): use multi-stage Dockerfile and add .dockerignore
- Change .woodpecker.yml to use Dockerfile (multi-stage) instead of Dockerfile.simple
- Add .dockerignore to exclude node_modules and build artifacts
- Reduces image size to avoid 413 Payload Too Large error
2026-04-16 10:47:30 +02:00
Tracewebstudio Dev
6f31fb06a5 fix(signup): send first_name and last_name instead of full_name
- Backend now expects first_name and last_name separately
- Remove full_name field from registration payload
2026-04-16 10:35:40 +02:00
Tracewebstudio Dev
fe81ce54c7 feat: add floating AI chat widget to all pages
- Add AiChatWidget component with floating button in bottom-right
- Routes to /api/ai/chat/message for chat, ticket, form, cover letter intents
- Quick action buttons for common tasks
- Appears on all public pages via app.tsx root layout
- Appears on all dashboard pages via DashboardShell
2026-04-15 20:03:47 +02:00
Tracewebstudio Dev
6f550458e7 fix: use registry.nxtgauge.com without port 2026-04-15 14:58:34 +02:00
Tracewebstudio Dev
da7e6f163e fix: hardcode registry with port 5000 2026-04-15 14:50:36 +02:00
Tracewebstudio Dev
4c9ce597f8 fix: remove duplicate/malformed fields in ProfilePage BASIC_FIELDS 2026-04-15 14:35:19 +02:00
Tracewebstudio Dev
5922b98c93 fix: update forms to match DB schema - first_name/last_name, role keys 2026-04-15 06:23:28 +02:00
Tracewebstudio Dev
c2cbafc159 Wire external runtime preview mode and backend data in dashboard preview 2026-04-15 00:15:11 +02:00
Tracewebstudio Dev
b2856f49c1 chore: remove gitops update step (handled server-side) 2026-04-14 18:52:19 +02:00
Tracewebstudio Dev
287be47598 fix: use GITOPS_REPO_URL with GHCR auth 2026-04-14 18:44:10 +02:00
Tracewebstudio Dev
b5afe10594 fix: use GHCR_TOKEN/GHCR_USERNAME for gitops push 2026-04-14 18:31:56 +02:00
Tracewebstudio Dev
8333339342 fix: use GITOPS_REPO_URL secret for git clone 2026-04-14 18:30:50 +02:00
Tracewebstudio Dev
a519bcbfba fix: use GITHUB_TOKEN for git clone 2026-04-14 18:27:56 +02:00
Tracewebstudio Dev
faaca623d1 ci: add gitops update step while keeping original registry config 2026-04-14 14:34:01 +02:00
Tracewebstudio Dev
42f1b7a220 fix: use explicit registry.nxtgauge.com:5000 with REGISTRY_* secrets 2026-04-14 14:32:28 +02:00
Tracewebstudio Dev
c26f14f917 ci: simplify GitOps update to use Woodpecker's Git access 2026-04-14 14:28:22 +02:00
Tracewebstudio Dev
f67319c5f7 fix: use GHCR_USERNAME/GHCR_TOKEN instead of REGISTRY_* 2026-04-14 14:26:56 +02:00
Tracewebstudio Dev
b4cdfec3b5 ci: add GitOps update step to Woodpecker pipeline
- After building, update nxtgauge-gitops with new SHA tag
- Requires secrets: GITOPS_REPO_URL, GITOPS_BRANCH, GITOPS_TOKEN
2026-04-14 14:18:59 +02:00
Tracewebstudio Dev
7c99698d14 chore: retrigger woodpecker 2026-04-13 12:08:48 +02:00
Tracewebstudio Dev
a94498e3bf fix: update vitest config and msw v2 API, remove orphaned tests 2026-04-13 01:36:15 +02:00