Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
0a4b778
feat(web): bootstrap Pravado FE shell
cryptocrystian Aug 22, 2025
f6014ff
Theme Tokens v2 - Dark Foundation + Light Content Islands
cryptocrystian Aug 25, 2025
fdf2eac
Add Cloudflare Pages headers for security
cryptocrystian Aug 25, 2025
eba469a
Add wrangler.toml for Cloudflare Pages build configuration
cryptocrystian Aug 25, 2025
be3ed99
Fix Node.js version requirements for CI/CD
cryptocrystian Aug 25, 2025
3fc36c3
Fix CI build configuration
cryptocrystian Aug 25, 2025
f53bd64
Fix conflicting GitHub Actions workflows
cryptocrystian Aug 25, 2025
0221ddb
Fix Cloudflare Pages 404 issue with relative asset paths
cryptocrystian Aug 25, 2025
4a25691
UI Polish P2 β€” Enterprise Dashboard Layout & Brand Application
cryptocrystian Aug 25, 2025
96f61e1
UI Polish P3: Glassmorphism + AI Brand Accents + Enhanced Sidebar
cryptocrystian Aug 25, 2025
ac4996a
P4 UI Finalize: Complete Brand System & Enterprise Flow
cryptocrystian Aug 25, 2025
97cecb3
Fix TypeScript unused import errors
cryptocrystian Aug 25, 2025
cc124a6
P5 Visual Overhaul: Full Brand Enforcement + Premium Enterprise UI
cryptocrystian Aug 25, 2025
8d316ed
Fix TypeScript unused import error in KPIHero
cryptocrystian Aug 25, 2025
7fc6f9d
🎨 Agentic UI Overhaul β€” Complete Brand System + Dashboard V2
cryptocrystian Aug 25, 2025
f057da9
Fix test command for CI/CD compatibility
cryptocrystian Aug 26, 2025
1ecae53
URGENT: Fix infinite re-render loop in Orchestration/UI Agentic branch
cryptocrystian Aug 26, 2025
74e2d77
CRITICAL: Bypass API calls causing 20+ second loading delays
cryptocrystian Aug 26, 2025
cb696d4
Phase 3: Visual & A11y QA Guardrails - Complete Implementation
cryptocrystian Aug 26, 2025
d7ccaf4
Trigger Cloudflare rebuild for Phase 3 changes
cryptocrystian Aug 26, 2025
ec4ce55
Add Phase 3 deployment verification indicator
cryptocrystian Aug 26, 2025
44f6494
Fix TypeScript build errors for deployment
cryptocrystian Aug 26, 2025
7867712
DEPLOYMENT TEST: Add obvious visual change to verify Cloudflare deplo…
cryptocrystian Aug 26, 2025
7b50aca
CRITICAL FIX: Add PostHog tracking to correct v2 AppSidebar
cryptocrystian Aug 26, 2025
a9f7989
Update Phase 3 indicator with enhanced styling
cryptocrystian Aug 26, 2025
cf8ee19
Fix CSS build issue preventing glass morphism and brand colors from a…
cryptocrystian Aug 26, 2025
10f38d4
feat: Complete P6 AI-First Dashboard + Brand Compliance Overhaul
cryptocrystian Aug 26, 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
12 changes: 12 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
root = true

[*]
charset = utf-8
end_of_line = lf
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
trim_trailing_whitespace = false
30 changes: 30 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.19.4'

- name: Install dependencies
working-directory: apps/web
run: npm install

- name: Build
working-directory: apps/web
run: npm run build

- name: Run tests
working-directory: apps/web
run: npm test
50 changes: 0 additions & 50 deletions .github/workflows/deploy-pages.yml

This file was deleted.

40 changes: 40 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Deploy to Cloudflare Pages

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: read
deployments: write

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.19.4'

- name: Install dependencies
working-directory: apps/web
run: npm install

- name: Build
working-directory: apps/web
run: npm run build

- name: Deploy to Cloudflare Pages
uses: cloudflare/pages-action@v1
with:
apiToken: akSfYkGgbiodyCqtTrJrQz6waJZFflY6c7crQusL
accountId: acf237e348fedac4f969d5a5aabd7626
projectName: pravado-app
directory: apps/web/dist
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
38 changes: 0 additions & 38 deletions .github/workflows/nodejs.yml

This file was deleted.

77 changes: 77 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
# Dependencies
node_modules/
.pnpm-store/

# Build outputs
dist/
build/
.next/
.nuxt/

# Environment files
.env
.env.local
.env.development.local
.env.test.local
.env.production.local

# IDE
.vscode/
.idea/
*.swp
*.swo

# OS
.DS_Store
Thumbs.db

# Logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Coverage directory used by tools like istanbul
coverage/
*.lcov

# Dependency directories
jspm_packages/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# Temporary folders
tmp/
temp/

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
20.19.4
Loading