/bug-catcher-dsidata

Symfony Bug and exception monitoring app

Primary LanguagePHPMIT LicenseMIT

Catch every bug in all your Symfony applications in one place

screenshot screenshot

Setup

Download the code

git clone https://github.com/php-sentinel/bug-catcher.git

To get it working, follow these steps:

Download Composer dependencies

Make sure you have Composer installed and then run:

composer install

You may alternatively need to run php composer.phar install, depending on how you installed Composer.

Setup the database

# /env.local
APP_ENV=prod
DATABASE_URL=mysql://username:password@127.0.0.1:3306/database-name

Run migrate command for setup database

php bin/console doctrine:migrations:migrate

build javascripts

You need to have downloaded and installed nodejs and yarn

yarn install
yarn build

Create first admin user

php bin/console app:init <email> <password>

Start the built-in web server

You can use Nginx or Apache, but the built-in web server works great:

php bin/console server:run

Now check out the site at http://localhost:8000

Enable Logging

Setup your Symfony applications

See package php-sentinel/bug-catcher-reporter-bundle

Have fun!

Setup non symfony applications

See package php-sentinel/bug-catcher-curl-reporter

Have Ideas, Feedback or an Issue?

If you have suggestions or questions, please feel free to open an issue on this repository.