Local Setup
Use one local environment file per project and keep it ignored by git.
Shell check
test -n "$CODEXPERTISE_API_KEY" && echo "key is set"
Avoid printing the key itself. The check should only confirm that a value exists.
Use one local environment file per project and keep it ignored by git.
test -n "$CODEXPERTISE_API_KEY" && echo "key is set"
Avoid printing the key itself. The check should only confirm that a value exists.