Skip to content

Commit 7249a40

Browse files
committed
Initial commit: Semantic Substrate Database v1.0
0 parents  commit 7249a40

73 files changed

Lines changed: 262779 additions & 0 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.

.claude/settings.local.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"permissions": {
3+
"allow": [
4+
"Bash(python test:*)",
5+
"Bash(python:*)",
6+
"Bash(cat:*)",
7+
"Bash(dir:*)",
8+
"Bash(findstr:*)",
9+
"Bash(git clone:*)",
10+
"Bash(timeout 180 python ultimate_demonstration.py)"
11+
],
12+
"deny": [],
13+
"ask": []
14+
}
15+
}

.gitignore

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# Python
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
*.so
6+
.Python
7+
build/
8+
develop-eggs/
9+
dist/
10+
downloads/
11+
eggs/
12+
.eggs/
13+
lib/
14+
lib64/
15+
parts/
16+
sdist/
17+
var/
18+
wheels/
19+
*.egg-info/
20+
.installed.cfg
21+
*.egg
22+
23+
# Virtual environments
24+
venv/
25+
ENV/
26+
env/
27+
28+
# IDEs
29+
.vscode/
30+
.idea/
31+
*.swp
32+
*.swo
33+
*~
34+
.DS_Store
35+
36+
# Testing
37+
.pytest_cache/
38+
.coverage
39+
htmlcov/
40+
.tox/
41+
42+
# Database files
43+
*.db
44+
*.db-journal
45+
*.sqlite
46+
*.sqlite3
47+
!test_semantic.db
48+
!enhanced_demo.db
49+
50+
# Logs
51+
*.log
52+
53+
# Temporary files
54+
*.tmp
55+
*.bak
56+
*.backup*
57+
demo_output.txt
58+
demo_complete_output.txt
59+
60+
# OS
61+
Thumbs.db
62+
.DS_Store

0 commit comments

Comments
 (0)