mirror of
https://github.com/immich-app/immich.git
synced 2025-01-28 00:59:18 -05:00
7 lines
187 B
Bash
7 lines
187 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# If .env file does not exist, create it by copying example.env from the docker folder
|
||
|
if [ ! -f ".devcontainer/.env" ]; then
|
||
|
cp docker/example.env .devcontainer/.env
|
||
|
fi
|