I need to run a manage.py loaddata command to import some data into the database of my heroku instance and heroku's ethereal file system presents some problems in this regard. I really would prefer not to have to add the data files to my heroku repository and push an update every single time that I want to run loaddata (since I'll need to do this on a regular basis with different files for different heroku instances running the same code base.) Is there a way to either a) run loaddata on a remote instance without having the data file residing on the instance's file system, maybe either by piping the data in or referencing a local file or b) upload a file and run loaddata in the same session so that the file can exist on the instance while the command is being executed? (I realize that it will disappear as soon as the interactive session ends)
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Here's what a came up with (using my (a) idea with piping from stdin), but it doesn't work due to this issue with heroku run: https://github.com/heroku/heroku/issues/256 A management command to wrap loaddata in order to get it to use stdin (it could just be written as a python scripts if you set up the django eviron):
Usage:
|
||||
|
|