mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-02-26 03:47:01 -05:00
10 lines
139 B
Bash
Executable File
10 lines
139 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")"/..
|
|
|
|
if [ ! -f .env ]; then
|
|
cp .env.example .env
|
|
echo ".env file created from .env.example"
|
|
fi |