Mael
Mael
I'm interested in the answer too. Here is an example: I have a form: ``` js class Form extends Component { constructor(props) { super(props); this.validatorTypes = { name: Joi.string().alphanum().required().label('Name') };...
If you're using basic [plain-text environment variables](https://cloud.google.com/build/docs/build-config-file-schema#env) (no secrets), you don't need to use `$$`. `DJANGO_SETTINGS_MODULE=$DJANGO_SETTINGS_MODULE` should work just fine.
If you're looking to use secrets with this cloud builder, you'll need to use the [entrypoint](https://cloud.google.com/build/docs/securing-builds/use-secrets#access-utf8-secrets) parameter. This is required to refer to the environment variable for the secret. You'll...