Skip to content

Commit 1af1a30

Browse files
committed
fresh start
1 parent 7c9f7b5 commit 1af1a30

336 files changed

Lines changed: 504 additions & 425 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

PLAN.md

Lines changed: 0 additions & 425 deletions
Large diffs are not rendered by default.

legacy2/.gitignore

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
# Environment variables
2+
.env
3+
.env.*
4+
!.env.example
5+
.env*.local
6+
7+
# Vercel
8+
.vercel
9+
10+
# Next.js
11+
.next/
12+
13+
# Turbo
14+
.turbo/
15+
.turbo-prune-check/
16+
17+
# Executor
18+
.executor-v2/
19+
20+
# Cloudflare Workers local state
21+
**/.wrangler/
22+
**/.dev.vars
23+
24+
# Dependencies
25+
**/node_modules/
26+
27+
# TypeScript build info
28+
*.tsbuildinfo
29+
30+
# Output / build artifacts
31+
out
32+
dist
33+
*.tgz
34+
35+
# Rust / Cargo build artifacts
36+
**/target/
37+
tools/openapi-extractor-rs/pkg-*/
38+
39+
# Code coverage
40+
coverage
41+
*.lcov
42+
43+
# Logs
44+
logs
45+
*.log
46+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
47+
48+
# Caches
49+
.eslintcache
50+
.cache
51+
52+
# IntelliJ based IDEs
53+
.idea
54+
55+
# Finder (macOS)
56+
.DS_Store
57+
58+
# Convex local backend state
59+
convex_local_backend.sqlite3
60+
convex_local_storage/
61+
62+
# Local OpenAPI sources service state
63+
sources/data/*.sqlite
64+
sources/data/*.sqlite-shm
65+
sources/data/*.sqlite-wal
66+
67+
# Composio toolkit scrape outputs
68+
sources/composio-scrape/data/
69+
70+
# Dev runner PID file
71+
.dev.pids
72+
73+
# Misc
74+
*.har
75+
.chat-links.json
76+
.reference/
77+
personal-notes/
78+
.tmp/
79+
executor/.env.executor-push
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)