Alex Waters
Alex Waters
Is there a way to set the cloudinary url in flask config so that we don't have to define it as an env variable?
In my application I'm doing the following: ``` class ExtendedRegisterForm(RegisterForm): username = StringField('Username', [DataRequired(), Length(min=3, max=50), Regexp(r'^[A-Za-z0-9@#$%^&+=]+$', message='Username contains invalid characters'), UniqueUsername(message='Username taken') ]) ``` and came across your similar...