9 lines
171 B
Bash
Executable File
9 lines
171 B
Bash
Executable File
#!/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 |