Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
Empty file added .README.md
Empty file.
62 changes: 62 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
key.json
.env
/Users/jarvis/CompanyProject/VideoSystem/backend/key.json
/Users/jarvis/CompanyProject/VideoSystem/backend/db.sqlite3

# Node modules and dependencies
node_modules/
staticfiles/

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
dist/
build/

# Virtual Environment
env/
venv/
ENV/
/Users/jarvis/CompanyProject/VideoSystem/ManInter

# Environment Variables
.env
.env.local

# Logs
logs/
*.log

# Data files (may contain sensitive info)
data/interviews/*.json
data/*.json
data/*.txt

# IDE
.vscode/
.idea/
*.swp
*.swo
*~

# OS
.DS_Store
Thumbs.db

# Testing
.pytest_cache/
.coverage
htmlcov/

# Temporary files
*.tmp
*.bak
key.json
/Users/jarvis/CompanyProject/Agent/key.json

# tempory logs
/Users/jarvis/CompanyProject/Agent/logs
49 changes: 49 additions & 0 deletions Agent/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
dist/
build/

# Virtual Environment
env/
venv/
ENV/

# Environment Variables
.env
.env.local

# Logs
logs/
*.log

# Data files (may contain sensitive info)
data/interviews/*.json
data/*.json
data/*.txt

# IDE
.vscode/
.idea/
*.swp
*.swo
*~

# OS
.DS_Store
Thumbs.db

# Testing
.pytest_cache/
.coverage
htmlcov/

# Temporary files
*.tmp
*.bak
key.json
/Users/jarvis/CompanyProject/Agent/key.json
Loading