13 lines
234 B
Bash
13 lines
234 B
Bash
#!/bin/sh
|
|
set -eu
|
|
|
|
cd /app/delivery
|
|
|
|
sh tools/init_runtime_data.sh
|
|
|
|
python3 tools/device_mapper.py build
|
|
python3 tools/export_mysql_seed.py
|
|
python3 tools/load_mysql_seed.py
|
|
|
|
exec python3 tools/web_server.py --host 0.0.0.0 --port 8123
|