WHITECOLOR
WHITECOLOR

Reputation: 26142

Heroku: how to put file that is not in git repo

Couldn't find the answer.

Is it possible to put some file in the heroku app files that is not in git repo? (Let's suppose I don't want this file to be managed by git, but my app needs it).

Thanks!

Upvotes: 0

Views: 305

Answers (1)

Arnaud
Arnaud

Reputation: 17737

No, the only way to push files to the heroku server is through git.

If it's something heavy like a music or video file (or any kind of file really), you can host it on Amazon S3 instead, and you might want to look at tools like https://addons.mozilla.org/en-US/firefox/addon/amazon-s3-organizers3fox/ to help you upload files once your account is created.

Upvotes: 3

Related Questions