-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
83 lines (73 loc) · 1.83 KB
/
.gitignore
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
# This .gitignore file is specifically designed for the AI Powered Request Handler Tool MVP.
# It is meticulously crafted to exclude files and directories that are not essential for the project's core functionality.
# The goal is to maintain a clean, organized, and efficient Git repository while ensuring that all crucial components are included for deployment.
# Python related files:
# - Exclude default Python cache files, build artifacts, and temporary files:
__pycache__
*.pyc
*.pyo
*.pyd
*.egg-info
dist
build
# Dependencies:
# - Exclude dependency-related files, including virtual environment folders and package installation records:
venv
.venv
*.egg
pip-log.txt
requirements.txt
# Testing:
# - Exclude test results and coverage files:
# - However, include test code itself to ensure proper functionality is tested:
tests/unit/test_openai_service.py
tests/unit/test_db_service.py
# Logging and Debugging:
# - Exclude log files generated during development and debugging:
*.log
*.out
*.err
# Documentation:
# - Exclude generated documentation, but include the README.md file for project information:
docs/
*.rst
*.html
# IDE and Editor Settings:
# - Exclude configuration files for specific development environments:
.idea
.vscode
*.suo
*.user
*.sln
*.tmp
*.userprefs
*.vbp
*.suo
*.ncb
*.opendb
*.aps
*.sln
*.pdb
*.suo
# Containerization:
# - Exclude Docker-related files, but include the Dockerfile for containerization:
Dockerfile
docker-compose.yml
.dockerignore
.circleci
.gitlab-ci.yml
# Sensitive Information:
# - Exclude any configuration files or scripts that contain sensitive data, such as API keys or database credentials:
.env
# Temporary Files:
# - Exclude temporary files created during development:
*.pyo
*.pyc
*.swp
*.swo
*.bak
*.tmp
# Other Files:
# - Exclude any other files that are not essential for the project:
*.DS_Store
Thumbs.db