You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While copying from example folder to user's installation, it is probably better to copy * from /example/
Use /.* explicitly to copy .envrc file also:
In:
export INSTALLATION_NAME=<your-name> # e.g. customer name
mkdir -p installations/$INSTALLATION_NAME
cd installations/$INSTALLATION_NAME
cp -r ../example/ ./
better use:
export INSTALLATION_NAME=<your-name> # e.g. customer name
mkdir -p installations/$INSTALLATION_NAME
cd installations/$INSTALLATION_NAME
cp -r ../example/* ../example/.* .
The text was updated successfully, but these errors were encountered:
In README.md
While copying from example folder to user's installation, it is probably better to copy * from /example/
Use /.* explicitly to copy .envrc file also:
In:
better use:
The text was updated successfully, but these errors were encountered: