Compare commits

4 Commits

Author SHA1 Message Date
3fbf08aea6 Finished CICD SASS compiler, Added broken example page
Some checks failed
Compile SASS / deploy (push) Has been cancelled
Update sass-compile.yml, maki-03.jpg, and 5 more files...
2024-11-26 21:04:00 +01:00
f2833469dc Fixed artifact name, testing author name condition
Update sass-compile.yml
2024-11-26 21:02:28 +01:00
fba4c20b47 Added artifact step
Update sass-compile.yml
2024-11-26 20:56:57 +01:00
ecf86920e7 Added first version of SASS CICD
Update sass-compile.yml
2024-11-26 20:53:58 +01:00
2 changed files with 21 additions and 2 deletions

2
.gitattributes vendored
View File

@@ -1,2 +0,0 @@
# Preventing this repo from turning into a PHP repository
*.php -linguist-vendored

21
dockerize.cmd Normal file
View File

@@ -0,0 +1,21 @@
@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