How to upload config files to project after deployment?

I deployed my Python’s Django app and now want to upload my JSON config files that are ignored by git for security reasons, but can’t find a way how to do it.

Is it possible to upload extra files after deployment? Didn’t find anything on Google or Vercel docs.

Hi, @industry-analyser! Welcome to the Vercel Community :smile:

Could you remove the JSON config files from the .gitignore file, commit and then re-deploy? They should then appear in your deployment.

Yes, I can. But my config files include secrets and other sensitive information that I don’t want to include in git.

How can I add sensitive configuration files to the project without adding them to git?

@pawlean , thank you for your initial response!

Could you advice to me how I can define values for my secret keys in my project without including them in git? Or is that not possible in vercel?

How other users handle their secrets?