Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.79 KB

README.md

File metadata and controls

29 lines (20 loc) · 1.79 KB

Secret Credentials

Place the following secret .json files here. The paths are accessed using the .env variables. The content of this folder will be ignored in source control except the README.md as mentioned in .gitignore

Google Cloud Credentials

This application requires Google Cloud credentials for authentication and authorization if you want to access google drive and youtube.

Important: Do not commit the actual credential files to version control !

Configuration Steps

  1. Obtain Google Cloud credential files:

  2. Place the credential files:

    • Save googleoauth2-client.json into the this folder.
    • Save googlecloud-service.json into the this folder.
  3. Set up your .env file:

    • Create a .env file in the root directory if it doesn't exist.
    • Add the following lines to your .env file, replacing the placeholders with the actual paths to your credential files:
      GOOGLE_OAUTH2_CLIENT="src/secret/googleoauth2-client.json"
      GOOGLE_APPLICATION_CREDENTIALS="src/secret/googlecloud-service.json"