Skip to content

Commit 16116be

Browse files
committed
Update .gitignore with build artifacts, logs, tools; add .env.example
1 parent 3f46131 commit 16116be

2 files changed

Lines changed: 40 additions & 6 deletions

File tree

.env.example

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
DB_HOST=your-db-host.aivencloud.com
2+
DB_USER=your_db_user
3+
DB_PASS=your_db_password
4+
DB_NAME=defaultdb
5+
DB_PORT=3306 #default port

.gitignore

Lines changed: 35 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ __pycache__/
55
*.so
66
.Python
77
env/
8-
build/
98
develop-eggs/
109
dist/
1110
downloads/
@@ -28,6 +27,8 @@ ENV/
2827

2928
# Environment Variables
3029
.env
30+
*.env
31+
!.env.example
3132

3233
# IDEs
3334
.vscode/
@@ -36,21 +37,49 @@ ENV/
3637
*.swo
3738
.vs/
3839
*.spec
40+
.settings/
3941

4042
# OS
4143
Thumbs.db
4244
Desktop.ini
45+
.DS_Store
4346

44-
# Project specific
45-
GUI-App-v2/
46-
student_report_*.xlsx
47+
# Build outputs & logs
48+
build/
49+
build_output/
50+
build_output_fixed/
51+
build_output_final/
52+
build_output_manual/
53+
output/
54+
target/
55+
src/
56+
*.log
57+
build_log.txt
58+
compile_log.txt
59+
fix_log.txt
60+
jar_content.txt
4761

4862
# Java
49-
target/
5063
*.class
5164
*.jar
65+
*.war
66+
*.ear
5267
.project
5368
.classpath
54-
.settings/
5569
*.iml
70+
71+
# Tools & temp
72+
tools/
73+
74+
# Project specific
75+
GUI-App-v2/
76+
student_report_*.xlsx
5677
student_report_*.csv
78+
79+
# Exclude sibling projects not part of this repo
80+
/Banking_problem/
81+
/Music_with_help_of_python/
82+
/Slot-Machine/
83+
/request_API_From_PokeAPI/
84+
/GUI/
85+
/QR_Code_Gen/

0 commit comments

Comments
 (0)