I'm trying to deploy Errbot in App Engine. Errbot needs the data directory to be writable but an App Engine instance's local filesystem is not writable. Is there any way to work around this?
Asked
Active
Viewed 70 times
1 Answers
0
From Documentation:
You are correct, GAE local filesystem that your application is deployed to is not writeable. This behavior ensures the security and scalability of your application.
However, if your use case involves to store data in a persistent manner, you may consider using Cloud Storage to read and write files during runtime. App Engine creates a default bucket when you create an application.
This bucket provides the first 5GB of storage for free and includes a free quota for Cloud Storage I/O operations. You can create other Cloud Storage buckets, but only the default bucket includes the first 5GB of storage for free.

sllopis
- 2,292
- 1
- 8
- 13