9 lines
171 B
Bash
9 lines
171 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
set -eu
|
||
|
|
|
||
|
|
python scripts/app_db_adopt.py
|
||
|
|
python scripts/location_db_adopt.py
|
||
|
|
python scripts/poo_db_adopt.py
|
||
|
|
|
||
|
|
exec uvicorn app.main:app --host 0.0.0.0 --port 8000
|