-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
89 lines (75 loc) · 1.49 KB
/
.gitignore
File metadata and controls
89 lines (75 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# ============================================
# Insight Alchemists Datathon - .gitignore
# ============================================
# AI Data Dictionary Query Assistant
# Phase 1 & 2 Complete - Ready for Phase 3
# Output directories
data_dictionaries/*.csv
sample_data/version_*
# Git
.git
.gitignore
# Python
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
*.so
*.egg
*.egg-info
dist/
build/
env/
venv/
.venv/
# Project-specific Python paths
src/venv/
src/__pycache__/
src/**/__pycache__/
src/**/*.pyc
src/**/*.pyo
src/**/*.pyd
# Additional Python paths for subdirectories
data_fetching/__pycache__/
data_fetching/**/__pycache__/
data_fetching/**/*.pyc
sql_integration/__pycache__/
sql_integration/**/__pycache__/
sql_integration/**/*.pyc
# Environment (keep .env.example, ignore actual .env)
.env
.env.local
.env.*.local
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Docker files in subdirectories
data_fetching/Dockerfile
data_fetching/docker-compose.yml
sql_integration/Dockerfile
sql_integration/docker-compose.yml
# Logs
*.log
# Documentation
# Temporary test files (keep for now)
# test_*.py
# find_deployment.py
# Azure Functions
agent-sql-connector/__pycache__/
agent-sql-connector/**/__pycache__/
agent-sql-connector/**/*.pyc
agent-sql-connector/.venv/
agent-sql-connector/venv/
agent-sql-connector/.python_packages/
agent-sql-connector/.vscode/
# Contains local settings and connection strings
agent-sql-connector/local.settings.json
agent-sql-connector/.azure/
agent-sql-connector/*.log