You've already forked immich
mirror of
https://github.com/immich-app/immich.git
synced 2025-07-04 05:50:38 +02: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
|