Update the Makefile

This commit is contained in:
Thomas Sileo 2018-07-13 00:45:29 +02:00
parent 4a882fb7ba
commit 2a9de02ecf

View file

@ -1,8 +1,5 @@
PYTHON=python
css:
$(PYTHON) -c "import sass; sass.compile(dirname=('sass', 'static/css'), output_style='compressed')"
password:
$(PYTHON) -c "import bcrypt; from getpass import getpass; print(bcrypt.hashpw(getpass().encode('utf-8'), bcrypt.gensalt()).decode('utf-8'))"
@ -11,6 +8,7 @@ docker:
docker build . -t microblogpub:latest
reload-fed:
docker build . -t microblogpub:latest
docker-compose -p instance2 -f docker-compose-tests.yml stop
docker-compose -p instance1 -f docker-compose-tests.yml stop
WEB_PORT=5006 CONFIG_DIR=./tests/fixtures/instance1/config docker-compose -p instance1 -f docker-compose-tests.yml up -d --force-recreate --build