2017-11-27 12:23:08 +01:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
|
|
|
|
echo "Building data for Flatisfy..."
|
|
|
|
cd /home/user/app
|
2017-12-30 19:57:14 +01:00
|
|
|
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
|
2017-12-30 19:57:14 +01:00
|
|
|
python -m flatisfy import -v --config /flatisfy/config.json
|
2017-11-27 12:23:08 +01:00
|
|
|
|
|
|
|
echo "Starting web UI..."
|
2017-12-30 19:57:14 +01:00
|
|
|
python -m flatisfy serve -v --config /flatisfy/config.json
|