Skip to content

Commit 19375e5

Browse files
committed
feat(gitignore): ignore docker compose and env files
Updated .gitignore to exclude unnecessary Docker-related files and local development configurations. - Ignored compose/.env to prevent committing sensitive environment variables. - Ignored Nginx site configuration files in compose/docker/nginx/sites-enabled/. - Ignored compose/src directory to exclude local development source files. This update ensures a cleaner repository by avoiding unintentional commits of local configurations and environment files.
1 parent 70be198 commit 19375e5

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.gitignore

+6-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ fabric.properties
7070
.LSOverride
7171

7272
# Cache and metadata files
73-
Icon # Must end with two \r
73+
Icon
7474
._*
7575
.com.apple.timemachine.donotpresent
7676
.DocumentRevisions-V100
@@ -89,3 +89,8 @@ Temporary Items
8989

9090
# SSL-related directories
9191
.well-known
92+
93+
# Directories docker
94+
compose/.env
95+
compose/docker/nginx/sites-enabled/*.conf
96+
compose/src

0 commit comments

Comments
 (0)