neo-neo-todo/backend/install.sh

8 lines
97 B
Bash
Raw Normal View History

#!/bin/sh
if [ ${ENV} = "DEV" ]; then
pdm sync --dev
else
pdm sync --prod --no-editable
fi