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
4a0a9e0
feat: initialize OrPaynter AI platform with core functionality
orpaynter Sep 8, 2025
3fe5540
chore: push updates to trigger vercel production deployment (removing…
orpaynter Jan 23, 2026
9ae94ba
chore: sanitize production env variables with placeholders
orpaynter Jan 24, 2026
14f0b5b
feat: add landing page and utility functions for roofing platform
orpaynter Jan 27, 2026
a3163fb
feat: add public-facing pages and admin dashboard for lead management
orpaynter Jan 27, 2026
cc3eb07
feat: implement role-based routing and update subscription plans
orpaynter Jan 27, 2026
aef5d3f
enhancing website
orpaynter Jan 27, 2026
e4658e1
feat(api): add early-access endpoint with email service
orpaynter Jan 27, 2026
0d69163
feat: pivot to Orchestrator of Orchestrators positioning and sync ema…
orpaynter Jan 27, 2026
d044036
docs: integrate conclusive validation report metrics (0.05ms latency,…
orpaynter Jan 27, 2026
07c32f2
feat: add Proof of Intelligence section with validation report metrics
orpaynter Jan 27, 2026
55d7adf
infra: define vercel compute layer and security headers
orpaynter Jan 27, 2026
2919949
ui: implement elite orchestrator theme and validation metrics
orpaynter Jan 27, 2026
1c60b45
feat: add command center, marketplace, and claims
orpaynter Jan 31, 2026
907dc3b
feat: configure server and update landing page assets
orpaynter Feb 2, 2026
60ca1a4
feat: add AI orchestration control plane and edge sync
orpaynter Feb 10, 2026
b6c42a4
fix: add PowerSyncProvider and fix syntax error
orpaynter Feb 10, 2026
309ba82
chore: update build configuration and release hash
orpaynter Feb 10, 2026
3d3c8df
feat: add PWA support and pre-built distribution assets
orpaynter Feb 10, 2026
8f4b7d2
feat: add AI Overlay SDK and demo host application
orpaynter Feb 10, 2026
2ba6415
feat: implement SQLite database storage context/early-access endpoint
orpaynter Feb 11, 2026
be790e8
feat: add OPREV revenue twin and audit logging
orpaynter Feb 14, 2026
f8becdb
feat: add 0oO unified gateway and security overlay
orpaynter Feb 14, 2026
59c3871
chore: update demo credentials and placeholders
orpaynter Feb 15, 2026
3927d92
Initial plan
Copilot Feb 18, 2026
b120d77
feat: implement critical security improvements for deployment
Copilot Feb 18, 2026
50d274e
docs: add docker-compose and comprehensive security guide
Copilot Feb 18, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
194 changes: 14 additions & 180 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,190 +1,24 @@
# Based on https://raw.githubusercontent.com/github/gitignore/main/Node.gitignore

# Logs

logs
_.log
npm-debug.log_
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
.pnpm-debug.log*

# Caches

.cache

# Diagnostic reports (https://nodejs.org/api/report.html)

report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json

# Runtime data

pids
_.pid
_.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover

lib-cov

# Coverage directory used by tools like istanbul

coverage
*.lcov

# nyc test coverage

.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)

.grunt

# Bower dependency directory (https://bower.io/)

bower_components

# node-waf configuration

.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)

build/Release

# Dependency directories

node_modules/
jspm_packages/

# Snowpack dependency directory (https://snowpack.dev/)

web_modules/

# TypeScript cache

*.tsbuildinfo

# Optional npm cache directory

.npm

# Optional eslint cache

.eslintcache

# Optional stylelint cache

.stylelintcache

# Microbundle cache

.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history

.node_repl_history

# Output of 'npm pack'

*.tgz

# Yarn Integrity file

.yarn-integrity

# dotenv environment variable files

.env
.env.development.local
.env.test.local
.env.production.local
.env.local

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

.parcel-cache

# Next.js build output

.next
out

# Nuxt.js build / generate output

.nuxt
node_modules
dist
dist-ssr
*.local

# Gatsby files

# Comment in the public line in if your project uses Gatsby and not Next.js

# https://nextjs.org/blog/next-9-1#public-directory-support

# public

# vuepress build output

.vuepress/dist

# vuepress v2.x temp and cache directory

.temp

# Docusaurus cache and generated files

.docusaurus

# Serverless directories

.serverless/

# FuseBox cache

.fusebox/

# DynamoDB Local files

.dynamodb/

# TernJS port file

.tern-port

# Stores VSCode versions used for testing VSCode extensions

.vscode-test

# yarn v2

.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

# IntelliJ based IDEs
# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea

# Finder (MacOS) folder config
.DS_Store
# Build artifacts
cli.js
.npmrc

# Lock files
bun.lock
bun.lockb
package-lock.json
yarn.lock
pnpm-lock.yaml

# Old build artifacts
cli.mjs
cli.mjs.map
source-maps/
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
Loading