pr-bot

Production app installation

TL;DR

In this section I recommend set up based on my personal preferences and experience. You can adjust it to your needs.

General steps

  1. Install php-fmp v8.4.
  2. Install nginx.
  3. Install composer.
  4. Setup env variables for the application.
  5. Install dependencies.
  6. Configure message routing.
  7. Dump env configuration.

Nginx and php-fmp configuration

Please refer to the official Symfony documentation for the most up-to-date configuration.

Install composer

Please refer to the official Composer documentation

Install Project

git clone git@github.com:mptooling/pr-bot.git
cd pr-bot

Setup env variables

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

Install dependencies

composer install --no-dev --optimize-autoloader

Configure message routing

Please, read configuring application notifications for more information.

Dump env configuration

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.