yig/Makefile

7 lines
385 B
Makefile
Raw Normal View History

prod: # execute this target on the production server in the nix-shell
2024-06-28 16:54:57 -05:00
rm -fr franklincce/staticfiles
cd franklincce; python3 manage.py collectstatic
sed "s/change_me/$(shell shuf -i1-1000000 -n1)/g" .env.prod.orig > .env.prod
sed "s|change_me|$(shell dd if=/dev/urandom bs=1024 count=1|base64)|g" .env.prod.orig > .env.prod
docker-compose -f docker-compose.prod.yml up -d --build