Is one of the following considered more standard than the others when storing credentials?
export DB_USER='aodhfoi2'
export DB_USER = aodhfoi2
export DB_USER="aodhfoi2"
Or, something else? Basically I'm looking to standardize various credentials and I haven't found a consistent example in what I've seen in various places on Google so was wondering if someone could recommend the best way to go about this.