From e051a183dce60ba6e3d05daaa489d193d0334efb Mon Sep 17 00:00:00 2001 From: Herwin Bozet Date: Tue, 26 Nov 2024 21:12:39 +0100 Subject: [PATCH] Removing PHP from stats, Removed trash Update .gitattributes and dockerize.cmd --- .gitattributes | 2 ++ dockerize.cmd | 21 --------------------- 2 files changed, 2 insertions(+), 21 deletions(-) create mode 100644 .gitattributes delete mode 100644 dockerize.cmd diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..c4d0070 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Preventing this repo from turning into a PHP repository +*.php -linguist-vendored diff --git a/dockerize.cmd b/dockerize.cmd deleted file mode 100644 index a9ed925..0000000 --- a/dockerize.cmd +++ /dev/null @@ -1,21 +0,0 @@ -@echo off -setlocal enabledelayedexpansion - -:: Going into the script's directory -cd /D "%~dp0" - - -:dockerize -echo. -echo Preparing the container -echo ----------------------- - -:dockerize-up -pushd %CD% -docker-compose -f docker-compose.dev.yml up -d --force-recreate -popd - -:dockerize-end - - -:end