rgies/awt-bundle

Agile Workgroup Tool

Installs: 22

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Language:JavaScript

Type:symfony-bundle

dev-master / dev-master 2014-06-23 17:06 UTC

This package is auto-updated.

Last update: 2020-06-14 06:46:24 UTC


README

This is a agile agency software to handle agile team processes.

Installation

Add the following code to your composer.json file:

"require": {
    ..
    "rgies/awt-bundle": "dev-master"
},

And then run the Composer update command:

$ php composer.phar update rgies/awt-bundle

Then register the bundle in the app/AppKernel.php file:

public function registerBundles()
{
    $bundles = array(
        ...
        new RGies\AwtBundle\AwtBundle(),
        ...
    );

    return $bundles;
}

Add the required routing settings in the app\config\routing.yml file:

awt:
	resource: "@AwtBundle/Controller/"
	type:	annotation
	prefix:	/

Add the jira configuration in the app\config\config.yml file:

# Agile Workgroup Tool Configuration
awt:
    jira_connector:
        protocol: https
        url: jira.your_domain.com
        login: xxx
        password: xxx