So I wanted to create a simple Node API using Express and using Sqlite as the database.
I wanted to host the Node API in GCP Cloud Run but I can't store the sqlite database file. I though of first putting the Node JS Application and Sqlite file in a instance in compute engine.
But then I though since sqlite only needs the sqlite file to run, I could just host the Node Js API in Cloud Run and store the sqlite database file in Cloud Storage and since the database in not really going to be accessed a lot and have a lot of data. I API is only used 3 people during work hours 9-5 5 days a week for my Client.
I was wondering if this is possible and if this is the cheapest option.