🛠️ Start LDAP docker image when launching `make dev`
This commit is contained in:
parent
8b68d7e821
commit
a36ad49133
5
Makefile
5
Makefile
|
@ -29,9 +29,12 @@ test:
|
||||||
clean:
|
clean:
|
||||||
rm -rf lufi.db files/
|
rm -rf lufi.db files/
|
||||||
|
|
||||||
dev: clean
|
dev: clean devldap
|
||||||
$(CARTON) morbo $(LUFI) --listen http://0.0.0.0:3000 --watch lib/ --watch script/ --watch themes/ --watch lufi.conf
|
$(CARTON) morbo $(LUFI) --listen http://0.0.0.0:3000 --watch lib/ --watch script/ --watch themes/ --watch lufi.conf
|
||||||
|
|
||||||
|
devldap:
|
||||||
|
sudo docker run --privileged -d -p 389:389 rroemhild/test-openldap; exit 0
|
||||||
|
|
||||||
devlog:
|
devlog:
|
||||||
multitail log/development.log
|
multitail log/development.log
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue