From 0bb9d54b3943695a3b10412dcd165fbfa3ea536f Mon Sep 17 00:00:00 2001
From: Joselin Permata Aprillia
 <103546691+joselinprmt@users.noreply.github.com>
Date: Tue, 6 Feb 2024 13:15:17 +0700
Subject: [PATCH] add .gitignore

---
 .gitignore | 79 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 79 insertions(+)
 create mode 100644 .gitignore

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 00000000..4d8d1bcf
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,79 @@
+# Virtual environments
+.env
+.venv
+env-
+env/
+venv/
+ENV/
+env.bak/
+venv.bak/
+
+# Python cache files
+__pycache__/
+
+# SQLite database
+db.sqlite3
+db.sqlite3-journal
+
+# User-uploaded media
+media
+
+# Collected static files
+staticfiles/
+
+# Coverage
+.coverage
+.coverage.*
+coverage.*
+htmlcov/
+
+# Chromedriver
+chromedriver
+chromedriver.exe
+
+### macOS ###
+# General
+.DS_Store
+.AppleDouble
+.LSOverride
+
+# Icon must end with two \r
+Icon
+
+# Thumbnails
+._*
+
+# Files that might appear in the root of a volume
+.DocumentRevisions-V100
+.fseventsd
+.Spotlight-V100
+.TemporaryItems
+.Trashes
+.VolumeIcon.icns
+.com.apple.timemachine.donotpresent
+
+# Directories potentially created on remote AFP share
+.AppleDB
+.AppleDesktop
+Network Trash Folder
+Temporary Items
+.apdisk
+
+### Windows ###
+# Windows thumbnail cache files
+Thumbs.db
+Thumbs.db:encryptable
+ehthumbs.db
+ehthumbs_vista.db
+
+# Dump file
+*.stackdump
+
+# Folder config file
+[Dd]esktop.ini
+
+# Recycle Bin used on file shares
+$RECYCLE.BIN/
+
+# Windows shortcuts
+*.lnk
\ No newline at end of file
-- 
GitLab