frigate/.devcontainer/initialize.sh

14 lines
334 B
Bash
Raw Normal View History

2022-07-20 04:18:32 +03:00
#!/bin/bash
set -euo pipefail
2022-11-15 02:43:58 +03:00
# These folders needs to be created and owned by the host user
mkdir -p debug web/dist
2022-07-20 04:18:32 +03:00
if [[ -f "config/config.yml" ]]; then
echo "config/config.yml already exists, skipping initialization" >&2
else
echo "initializing config/config.yml" >&2
cp -fv config/config.yml.example config/config.yml
fi