Skip to content

Commit

Permalink
Convert indentation to space
Browse files Browse the repository at this point in the history
  • Loading branch information
d9beuD committed Oct 28, 2024
1 parent a4476cf commit 4805e3b
Showing 1 changed file with 26 additions and 22 deletions.
48 changes: 26 additions & 22 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,40 +1,44 @@
build:
docker compose --progress=plain build
docker compose --progress=plain build

up:
docker compose up -d
docker compose up -d

logs:
docker compose logs -f
docker compose logs -f

stop:
docker compose stop
docker compose stop

restart: stop up

exec:
docker compose exec apache /bin/bash
docker compose exec apache /bin/bash

init-symfony:
docker compose exec apache sh -c "./init-symfony.sh"
docker compose exec apache sh -c "./init-symfony.sh"

init: build up init-symfony

rm:
rm -rf \
./assets \
./bin \
./config \
rm -rf \
./assets \
./bin \
./config \
./migrations \
./public/index\
.php \
./src \
./templates \
./tests \
./translations \
./var \
./vendor \
./composer.json \
./composer.lock \
./symfony.lock \
./phpunit.xml.dist \
./public/index\
.php \
./src \
./templates \
./tests \
./translations \
./var \
./vendor \
./composer.json \
./composer.lock \
./symfony.lock \
./phpunit.xml.dist \
./.env \
./.env.test \
./.gitignore \
./importmap.php

0 comments on commit 4805e3b

Please sign in to comment.