Ei kuvausta

pre-create.sh 234B

1234567891011
  1. #
  2. # before we build the image & create the devcontainer, we will...
  3. #
  4. echo $PWD
  5. # copy `.env.model` to `.env` if it doesn't exist already
  6. if [ ! -f .env ]; then
  7. echo ".env not found, cloning .env.model"
  8. cp .env.model .env
  9. fi