This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
facturio/scripts/run-dev.sh
2025-02-24 15:49:23 +01:00

14 lines
238 B
Bash
Executable file

#!/usr/bin/env bash
set -o nounset
set -o xtrace
set -o errexit
set -o pipefail
echo "Compiling messages..."
./manage.py compilemessages >/dev/null
echo "Migrating..."
./manage.py migrate --no-input
./manage.py runserver 0.0.0.0:8000