flatisfy/docker/run.sh

14 lines
341 B
Bash
Raw Normal View History

2017-11-27 12:23:08 +01:00
#!/bin/bash
set -e
echo "Building data for Flatisfy..."
cd /home/user/app
python -m flatisfy build-data -v --config /flatisfy/config.json
2017-11-27 12:23:08 +01:00
echo "Fetching new housing posts..."
2017-12-11 13:56:54 +01:00
cd /home/user/app
python -m flatisfy import -v --config /flatisfy/config.json
2017-11-27 12:23:08 +01:00
echo "Starting web UI..."
python -m flatisfy serve -v --config /flatisfy/config.json