How to prevent deletion of the GAE database on the development server?

If I do not use the GAE development server for several days, then the database will disappear the next time I start. Is there any way to prevent this?

+4
source share
1 answer

When starting the development server, use the --datastore_path parameter. This parameter allows you to specify where the database is stored. (The default location on your system sounds as if it is in a temporary folder that is cleared between launches - perhaps when you restart your machine).

+7
source

Source: https://habr.com/ru/post/1343833/


All Articles