Reputation: 876
I'm currently working on a file upload section of a project in PHP
and I'm looking to upload data to a bucket. I know how to do this just fine, but I'm wondering what the best way to test it is. Is there anyway to test it locally or do I have to deploy and test every time?
Upvotes: 0
Views: 101
Reputation: 7054
There is a complete simulation in the dev appserver, including uploading, reading and writing to a cloud storage bucket - you don't need to upload to production to test/debug it.
Upvotes: 1