##Incident Record Manager
This is a little incident tracking application. It is designed to be easy to use and track all necessary information about the all workflow and solution for each incident. The code has been developed using laravel 5 and Doctrine 2 for Laravel. The objective is to cover all steps to track any issues and incidents from the different applications and help the production support team to keep a track of the resolution. In future versions of the application, it is intended to use the tracked information from previous incidents to provide automatic resolution information.
###Installation and configuration
- Run
git clone https://github.com/GustavoZ77/IREMA.git
- Move to IREMA folder
cd IREMA
- Run
php composer.phar install
- Connect to your mariadb database and create an empty database
create database [DATABASE_NAME];
- Configure your database connection, set database user name, password and database name in the file
config/database.php
- Generate proxy object running
php artisan doctrine:generate:proxies
- Create the tables needed by the application with the following command
cat app/script/script.sql | mysql -u [USER_NAME] -p [DATABASE_NAME]
- Edit the file
config/app.php
replace the value of the elementkey
with a random string 32 characters long - Run
php -S localhost:8000 -t public
to test the application- Default user [email protected]
- Default password 1234
###References: