Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release: v3.2.10 #275

Open
wants to merge 2 commits into
base: releases/v3
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
RECAPTCHA_SITE_KEY=
RECAPTCHA_SECRET_KEY=
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.emergence
.php_cs.cache
.env

This file was deleted.

17 changes: 0 additions & 17 deletions php-config/ContactRequestHandler.config.d/recaptcha.php

This file was deleted.

9 changes: 9 additions & 0 deletions script/studio
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,14 @@ if [ -n "${1}" ]; then
fi


# initialize .env
if [ ! -f .env ]; then
echo
echo "==> studio: initializing .env"
cp .env.example .env
fi


echo
echo "==> studio: configuring Chef Habitat studio Docker options…"
STUDIO_NAME="${STUDIO_NAME:-laddr-studio}"
Expand All @@ -33,6 +41,7 @@ export HAB_DOCKER_OPTS="
-v $(cd ~/.ssh; pwd)/known_hosts:/root/.ssh/known_hosts:ro
--env STUDIO_DEVELOPER_UID=$(id -u)
--env STUDIO_DEVELOPER_GID=$(id -g)
--env-file .env
"
echo "${HAB_DOCKER_OPTS}"

Expand Down
Loading