File tree Expand file tree Collapse file tree 3 files changed +12
-0
lines changed
Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 1+ RECAPTCHA_SITE_KEY =
2+ RECAPTCHA_SECRET_KEY =
Original file line number Diff line number Diff line change 11.emergence
22.php_cs.cache
3+ .env
Original file line number Diff line number Diff line change @@ -22,6 +22,14 @@ if [ -n "${1}" ]; then
2222fi
2323
2424
25+ # initialize .env
26+ if [ ! -f .env ]; then
27+ echo
28+ echo " ==> studio: initializing .env"
29+ cp .env.example .env
30+ fi
31+
32+
2533echo
2634echo " ==> studio: configuring Chef Habitat studio Docker options…"
2735STUDIO_NAME=" ${STUDIO_NAME:- laddr-studio} "
@@ -33,6 +41,7 @@ export HAB_DOCKER_OPTS="
3341 -v $( cd ~ /.ssh; pwd) /known_hosts:/root/.ssh/known_hosts:ro
3442 --env STUDIO_DEVELOPER_UID=$( id -u)
3543 --env STUDIO_DEVELOPER_GID=$( id -g)
44+ --env-file .env
3645"
3746echo " ${HAB_DOCKER_OPTS} "
3847
You can’t perform that action at this time.
0 commit comments