shlogg · Early preview
Nomi3 @nomi3

Setting Up GCS Emulator For Flask On Cloud Run

Set up a GCS emulator in your local Flask env on Cloud Run using fsouza/fake-gcs-server & docker-compose.yml. Configure Flask's StorageClient with STORAGE_EMULATOR_HOST & AnonymousCredentials.

When creating an application that manipulates GCS (Google Cloud Storage) through Flask on Cloud Run, I wanted to use a GCS emulator in the local environment. This document describes how to set up such an environment.

  
  
  Emulator to Use

fsouza/fake-gcs-server

  
  
  Sample code

I created sample code in the following repository. By following the instructions in README.md, you can use the GCS emulator in a local environment to upload, download, and delete files.
Since you can start everything simply by cloning the repository and running make up, setup is straightforward.

flask-gcs...