Juan Felipe Zapata Moreno 7445e2d4ad ADD: Docker
2025-09-18 15:40:14 -06:00

13 lines
155 B
Bash
Executable File

#! /bin/bash
if [ ! -f .env ]; then
cp .env.example .env
fi
if [ ! -f colors.css ]; then
cp colors.css.example colors.css
fi
exec "$@"
echo "Done!"