Skip to content

Commit

Permalink
Makefile must be tab indented
Browse files Browse the repository at this point in the history
  • Loading branch information
d9beuD committed Oct 28, 2024
1 parent 9a16715 commit 338a934
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,44 +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 \
./migrations \
./public/index\
.php \
./src \
./templates \
./tests \
./translations \
./var \
./vendor \
./composer.json \
./composer.lock \
./symfony.lock \
./phpunit.xml.dist \
./.env \
./.env.test \
./.gitignore \
./importmap.php
docker compose exec apache sh -c \
"rm -rf \
./assets \
./bin \
./config \
./migrations \
./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 338a934

Please sign in to comment.