giudicelli/symfony-distributed-architecture-admin

Symfony distributed architecture admin

This package's canonical repository appears to be gone and the package has been frozen as a result. Email us for help if needed.

Installs: 6 674

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:symfony-bundle

pkg:composer/giudicelli/symfony-distributed-architecture-admin

0.5.1 2020-08-25 07:53 UTC

This package is auto-updated.

Last update: 2022-02-25 11:40:59 UTC


README

Symfony Distributed Architecture Admin is a Symfony bundle. It provides an administration interface for symfony-distributed-architecture.

Installation

$ composer require giudicelli/symfony-distributed-architecture-admin

After installing symfony-distributed-architecture-admin, or updating it, please make sure to run the following commands.

$ bin/console make:migration
$ bin/console doctrine:migrations:migrate

It will create or update all the necessary tables.

Using

This controller allows you to see what's happening with your symfony-distributed-architecture processes.

Configuration

Add a new route file in "config/routes/sda.yaml". This will allow you to acivate the controller and pick on which URL it will be available.

sda:
    resource: '@DistributedArchitectureAdminBundle/Resources/config/routes.xml'
    prefix: /distributed-architecture/

Now you can access it on the "/distributed-architecture/" URL, you will need to be connected as an admin.

Configuration on a remote server

On a remote server, you will also need to install symfony-distributed-architecture-admin, however you must not activate the route to the controller.