I'm working on a project with React and Firebase. And I'm using Firebase Storage.
From https://firebase.google.com/docs/storage/gcp-integration
Under the hood, Firebase SDKs for Cloud Storage use the default bucket in the Google App Engine free tier. This allows you to quickly get up and running with Cloud Storage, without having to put in a credit card or enable a billing account. It also allows you to easily share data between Firebase and a Google Cloud Platform project.
So this is why I'm asking this in a google cloud storage context:
QUESTION
Are storage buckets folder names case sensitive or insensitive?
//BUCKET/somefolder === //BUCKET/SomeFolder
???
Is there some best practice on naming folders?
- some-folder
- some_folder
- someFolder
- somefolder
Is there a best option between the ones listed above?