In this section I recommend set up based on my personal preferences and experience. You can adjust it to your needs.
Please refer to the official Symfony documentation for the most up-to-date configuration.
Please refer to the official Composer documentation
git clone git@github.com:mptooling/pr-bot.git
cd pr-bot
Configure general env variables in the .env.prod
file. Read reactions doc.
Create .env.prod.local
local file for secret env variables.
touch .env.prod.local
Add secret env variables:
GITHUB_WEBHOOK_SECRET=dummy # Set your GitHub webhook secret
SLACK_BOT_TOKEN=xoxb-bot-secret-token # Set your GitHub webhook secret
composer install --no-dev --optimize-autoloader
Please, read configuring application notifications for more information.
php composer dump-env prod
This will create a .env.local.php
file with the configuration for the production environment.
For more info, please read official documentation.