0

I have to python files that create and read text from a .txt file, in order for them to work they need to know the info inside of the .txt file.

In heroku I have a scheduler that runs one file, then the other. The big problem is that the files are reset every time to their state from the original repo. How can I get around this?

Kevin Hernandez
  • 1,270
  • 2
  • 19
  • 41

1 Answers1

1

Heroku does not offer a persistent file system. You will need to store them in another service (like S3), or depending on what the contents of your files are, redesign to write and read from a database instead.

P Ackerman
  • 2,266
  • 20
  • 24