a project frequently entails loading login credentials such as for S3 or for the API login credentials, or for login credentials of a website. can you think of a way in which to store these credentials without sharing them publicly on the github repository, for instance in the case that we want to make this repository public? What I currently do in my projects is that I have a keys.json file, which I then access in my scripts. But not sure this is best practice. Any inspiration?
I would keep those in a separate csv or txt files that only authorized people have access to. Anyway, in this project, there are no credentials to store secretly up to now.
a project frequently entails loading login credentials such as for S3 or for the API login credentials, or for login credentials of a website. can you think of a way in which to store these credentials without sharing them publicly on the github repository, for instance in the case that we want to make this repository public? What I currently do in my projects is that I have a keys.json file, which I then access in my scripts. But not sure this is best practice. Any inspiration?