diff --git a/README.md b/README.md index 5b1e17af..364c722f 100644 --- a/README.md +++ b/README.md @@ -86,8 +86,8 @@ pip install -r requirements.txt 3. Copy the secrets template file and fill in your OpenAI key and your GitHub user token: ``` -cp pr_agent/settings/.secrets_template.toml pr_agent/settings/.secrets -# Edit .secrets file +cp pr_agent/settings/.secrets_template.toml pr_agent/settings/.secrets.toml +# Edit .secrets.toml file ``` 4. Run the appropriate Python scripts from the scripts folder: @@ -147,8 +147,8 @@ git clone https://github.com/Codium-ai/pr-agent.git - Copy your app's webhook secret to the webhook_secret field. ``` -cp pr_agent/settings/.secrets_template.toml pr_agent/settings/.secrets -# Edit .secrets file +cp pr_agent/settings/.secrets_template.toml pr_agent/settings/.secrets.toml +# Edit .secrets.toml file ``` 6. Build a Docker image for the app and optionally push it to a Docker repository. We'll use Dockerhub as an example: diff --git a/pr_agent/settings/.secrets_template.toml b/pr_agent/settings/.secrets_template.toml index 59f4625b..420ad00e 100644 --- a/pr_agent/settings/.secrets_template.toml +++ b/pr_agent/settings/.secrets_template.toml @@ -1,5 +1,5 @@ # QUICKSTART: -# Copy this file to .secrets in the same folder. +# Copy this file to .secrets.toml in the same folder. # The minimum workable settings - set openai.key to your API key. # Set github.deployment_type to "user" and github.user_token to your GitHub personal access token. # This will allow you to run the CLI scripts in the scripts/ folder and the github_polling server.