Skip to content

Commit 196eecc

Browse files
committed
1 parent ae0cb27 commit 196eecc

File tree

208 files changed

+58110
-0
lines changed

Some content is hidden

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

208 files changed

+58110
-0
lines changed

Tutorial-Codebase-Knowledge/.clinerules

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

Tutorial-Codebase-Knowledge/.cursorrules

Lines changed: 1664 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Byte-compiled / cache files
2+
__pycache__/
3+
*.py[cod]
4+
*.pyo
5+
*.pyd
6+
7+
# Virtual environments
8+
venv/
9+
env/
10+
.venv/
11+
.env/
12+
13+
# Distribution / packaging
14+
*.egg-info/
15+
build/
16+
dist/
17+
18+
# Git and other VCS
19+
.git/
20+
.gitignore
21+
22+
# Editor files
23+
*.swp
24+
*.swo
25+
*.bak
26+
*.tmp
27+
.DS_Store
28+
.idea/
29+
.vscode/
30+
31+
# Secrets (if you’re using .env for API keys etc.)
32+
.env
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
GEMINI_PROJECT_ID=<GEMINI_PROJECT_ID>
2+
GEMINI_API_KEY=<GEMINI_API_KEY>
3+
GITHUB_TOKEN=<GITHUB_TOKEN>
4+
OPENROUTER_API_KEY = <OPENROUTER_API_KEY>
5+
OPENROUTER_MODEL = <OPENROUTER_MODEL>
Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
# Dependencies
2+
node_modules/
3+
vendor/
4+
.pnp/
5+
.pnp.js
6+
7+
# Build outputs
8+
dist/
9+
build/
10+
out/
11+
*.pyc
12+
__pycache__/
13+
14+
# Environment files
15+
.env
16+
.env.local
17+
.env.*.local
18+
.env.development
19+
.env.test
20+
.env.production
21+
22+
# Python virtual environments
23+
.venv/
24+
venv/
25+
26+
# IDE - VSCode
27+
.vscode/*
28+
!.vscode/settings.json
29+
!.vscode/tasks.json
30+
!.vscode/launch.json
31+
!.vscode/extensions.json
32+
33+
# IDE - JetBrains
34+
.idea/
35+
*.iml
36+
*.iws
37+
*.ipr
38+
39+
# IDE - Eclipse
40+
.project
41+
.classpath
42+
.settings/
43+
44+
# Logs
45+
logs/
46+
*.log
47+
npm-debug.log*
48+
yarn-debug.log*
49+
yarn-error.log*
50+
51+
# Operating System
52+
.DS_Store
53+
Thumbs.db
54+
*.swp
55+
*.swo
56+
57+
# Testing
58+
coverage/
59+
.nyc_output/
60+
61+
# Temporary files
62+
*.tmp
63+
*.temp
64+
.cache/
65+
66+
# Compiled files
67+
*.com
68+
*.class
69+
*.dll
70+
*.exe
71+
*.o
72+
*.so
73+
74+
# Package files
75+
*.7z
76+
*.dmg
77+
*.gz
78+
*.iso
79+
*.jar
80+
*.rar
81+
*.tar
82+
*.zip
83+
84+
# Database
85+
*.sqlite
86+
*.sqlite3
87+
*.db
88+
89+
# Optional npm cache directory
90+
.npm
91+
92+
# Optional eslint cache
93+
.eslintcache
94+
95+
# Optional REPL history
96+
.node_repl_history
97+
98+
# LLM cache
99+
llm_cache.json
100+
101+
# Output files
102+
output/
103+
104+
# uv manage
105+
pyproject.toml
106+
uv.lock
107+
108+
docs/*.pdf
109+
docs/design-cn.md

0 commit comments

Comments
 (0)