Skip to content

Commit 04a60ee

Browse files
committed
Initial commit - cut over from private repository
This repository was migrated from: git@github.com:datastax/nvidia_test_matrix.git All previous git history has been removed for public release.
0 parents  commit 04a60ee

File tree

257 files changed

+51790
-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.

257 files changed

+51790
-0
lines changed

.cursorignore

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# Cursor ignore file - controls what files are included in AI context
2+
# This overrides .gitignore for Cursor's context inclusion
3+
4+
# Exclude large directories and files that aren't useful for AI context
5+
.terraform/
6+
*.tfstate
7+
*.tfstate.*
8+
*.log
9+
*.tmp
10+
deployment-artifacts.tar.gz
11+
gpu-operator/
12+
nemo/nemo-microservices-helm-chart/
13+
docs/archive/
14+
demo/archive_demo/
15+
upstream/
16+
17+
# Exclude Python build artifacts and caches
18+
__pycache__/
19+
*.pyc
20+
.pytest_cache/
21+
build/
22+
dist/
23+
*.egg-info/
24+
.venv/
25+
venv/
26+
27+
# Exclude Jupyter checkpoints
28+
.ipynb_checkpoints/
29+
30+
# Exclude OS files
31+
.DS_Store
32+
Thumbs.db
33+
34+
# Exclude large data directories
35+
processed_documents/
36+
temp_documents/
37+
error_documents/
38+
checkpoints/
39+
downloads/
40+
41+
# Environment files - be selective
42+
.env
43+
.env.local
44+
.env.production
45+
.env.staging
46+
.env.development
47+
48+
# IMPORTANT: Allow template files for AI context
49+
!.env.template
50+
!.env.example
51+
!*.template
52+
!*.example
53+
54+
# Allow important config files
55+
!*.yaml
56+
!*.yml
57+
!*.json
58+
!*.toml
59+
!*.md
60+
!*.py
61+
!*.sh
62+
!*.tf
63+
!Makefile
64+
!requirements*.txt

.dockerignore

Lines changed: 102 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
.git
2+
.gitignore
3+
.github/
4+
5+
# Environment files
6+
.env
7+
.env.*
8+
!.env.template
9+
!.env.example
10+
11+
# Terraform
12+
.terraform/
13+
**/.terraform/
14+
*.tfstate
15+
*.tfstate.*
16+
*.tfvars
17+
!example.tfvars
18+
tfplan*
19+
*.tfplan
20+
plan.out
21+
22+
# Secrets and credentials
23+
*.pem
24+
*.key
25+
*.crt
26+
*.p12
27+
*_key
28+
*_secret
29+
.github-secrets
30+
runai.datastax.com-full-chain.pem
31+
runai_datastax_com.key
32+
33+
# Python & build
34+
.venv/
35+
venv/
36+
**/.venv/
37+
**/venv/
38+
__pycache__/
39+
**/__pycache__/
40+
*.pyc
41+
pytest_cache/
42+
43+
# Test/coverage reports
44+
htmlcov/
45+
**/htmlcov/
46+
47+
# Build artifacts
48+
build/
49+
dist/
50+
*.egg-info/
51+
build_artifacts/
52+
test_artifacts/
53+
build_venv/
54+
test_venv/
55+
demo/ingestion/build_artifacts/
56+
57+
# Internal/archive content not for public release
58+
.archive/
59+
docs/archive/
60+
demo/retrieval/archive/
61+
legacy/
62+
63+
# Large binaries and archives
64+
*.zip
65+
*.tar
66+
*.tar.gz
67+
*.tgz
68+
*.gz
69+
*.rar
70+
*.bak
71+
*.old
72+
73+
# Logs and temp
74+
*.log
75+
*.tmp
76+
*~
77+
78+
# OS/IDE
79+
.DS_Store
80+
Thumbs.db
81+
.idea/
82+
.vscode/
83+
84+
# Project-specific ignores
85+
Useful_Resources.txt
86+
deployment-artifacts.tar.gz
87+
gpu-operator/
88+
gpu-operator/*
89+
gpu-operator-source/
90+
gpu-operator-source/*
91+
nemo/dcgm-exporter/
92+
nemo/dcgm-exporter/*
93+
94+
#upstream/
95+
96+
# Limit Docker build context for root Dockerfile to retrieval package only
97+
# Last-match-wins: ignore everything, then re-include what the Dockerfile needs
98+
**
99+
!Dockerfile
100+
!.dockerignore
101+
!packages/datastax-retrieval/pyproject.toml
102+
!packages/datastax-retrieval/src/**

0 commit comments

Comments
 (0)