Jason
Jason

Reputation: 45

Resarting AppEngine after a file is modified

Whenever I make a change to my html file, I have to resart appengine server to see the change reflected. Why is this so? In Flask for example the server automatically reloads whenever it detects a file change. Can this be done in AppEngine?

Upvotes: 0

Views: 56

Answers (1)

Felipe Hoffa
Felipe Hoffa

Reputation: 59315

That's not the normal behavior for local development. You should be able to update your html files, as your code, without the need to restart the server.

Can you tell us more about your setup? Might there be a caching mechanism in your code that doesn't check the filesystem to refresh appropriately?

Upvotes: 2

Related Questions