All Projects → intaro → Pinboard

intaro / Pinboard

Licence: mit
Realtime PHP monitoring system which aggregates and displays Pinba data.

Labels

Projects that are alternatives of or similar to Pinboard

Silex
something to help you spark
Stars: ✭ 61 (-87.27%)
Mutual labels:  silex
Slugify
Converts a string to a slug. Includes integrations for Symfony, Silex, Laravel, Zend Framework 2, Twig, Nette and Latte.
Stars: ✭ 2,697 (+463.05%)
Mutual labels:  silex
ResponsibleServiceProvider
Silex service provider for seamless HTTP content negotiation
Stars: ✭ 35 (-92.69%)
Mutual labels:  silex
Crudlex
CRUDlex is an easy to use CRUD generator for Symfony 4 and Silex 2 which is great for auto generated admin pages
Stars: ✭ 102 (-78.71%)
Mutual labels:  silex
Transport
Swiss public transport API
Stars: ✭ 215 (-55.11%)
Mutual labels:  silex
sm-groupcheck-web
GroupCheck web API.
Stars: ✭ 14 (-97.08%)
Mutual labels:  silex
Silexstarter
Starter app based on Silex framework with mvc and modular arch, scaffold generator, and admin panel
Stars: ✭ 11 (-97.7%)
Mutual labels:  silex
Silex
[DEPRECATED -- Use Symfony instead] The PHP micro-framework based on the Symfony Components
Stars: ✭ 3,646 (+661.17%)
Mutual labels:  silex
Pimple
A small PHP dependency injection container
Stars: ✭ 2,491 (+420.04%)
Mutual labels:  silex
hello-world-app-php-silex
Hello World sample app in PHP and Silex
Stars: ✭ 23 (-95.2%)
Mutual labels:  silex
Payumserver
Payment processing microservice. Written in Symfony4
Stars: ✭ 103 (-78.5%)
Mutual labels:  silex
Silex Webprofiler
Stars: ✭ 207 (-56.78%)
Mutual labels:  silex
PHP-Frameworks-Bench
Popular PHP Frameworks Benchmark.
Stars: ✭ 28 (-94.15%)
Mutual labels:  silex
Superleansilexplate
Silex Superlean Starter
Stars: ✭ 61 (-87.27%)
Mutual labels:  silex
silex-example
silex-example.pagodabox.com/
Stars: ✭ 13 (-97.29%)
Mutual labels:  silex
Silex
Silex is a static website builder in the cloud.
Stars: ✭ 958 (+100%)
Mutual labels:  silex
silex-ddd-skeleton
A simple skeleton of silex application using ddd arquitecture
Stars: ✭ 19 (-96.03%)
Mutual labels:  silex
Bolt
Bolt is a simple CMS written in PHP. It is based on Silex and Symfony components, uses Twig and either SQLite, MySQL or PostgreSQL.
Stars: ✭ 4,136 (+763.47%)
Mutual labels:  silex
FacebookServiceProvider
Silex service provider that injects the Facebook SDK as a service
Stars: ✭ 28 (-94.15%)
Mutual labels:  silex
silex-starter-pack
A starter pack for beginning development with the Silex PHP framework. Includes a basic admin control panel, and user login system.
Stars: ✭ 12 (-97.49%)
Mutual labels:  silex

Intaro Pinboard

Intaro Pinboard (Pinba Board) is a realtime PHP monitoring system which aggregates and displays pinba data.

Intaro Pinboard

Developed on Silex framework and works with PHP 5.3.3 or later.

Installation

Before Pinboard installation you should already be installed pinba. Since the version 1.5 Intaro Pinboard requires Pinba 1.1 or higher.

  1. Download application:

     $ git clone git://github.com/intaro/pinboard.git --branch=v1.5.2
    
  2. Download composer:

     $ curl -sS https://getcomposer.org/installer | php
    
  3. Install dependency libraries through composer (and enter the parameters of connection to Pinba database):

     $ php composer.phar install
    
  4. Initialize app (command will create additional tables and define crontab task):

     $ ./console migrations:migrate
     $ ./console register-crontab
    
  5. Point the document root of your webserver or virtual host to the web/ directory. Read more in Silex documentation. Example for nginx + php-fpm:

     server {
         listen 80;
         server_name pinboard.site.ru;
         root /var/www/pinboard/web;
    
         #site root is redirected to the app boot script
         location = / {
             try_files @site @site;
         }
    
         #all other locations try other files first and go to our front controller if none of them exists
         location / {
             try_files $uri $uri/ @site;
         }
    
         #return 404 for all php files as we do have a front controller
         location ~ \.php$ {
            return 404;
         }
    
         location @site {
             fastcgi_pass unix:/tmp/php-fpm.sock;
             include fastcgi_params;
             fastcgi_param  SCRIPT_FILENAME $document_root/index.php;
             fastcgi_param HTTPS $https if_not_empty;
         }
    
         location ~ /\.(ht|svn|git) {
             deny  all;
         }
     }
    

More details in section Installation of the documentation.

Update

Update from 0.1 to 1.0

Branch 1.0 brings migrations machinery which allows to update Pinboard easy when it requires database schema transformation.

Switch to branch 1.0

$ git fetch
$ git checkout v1.0

Update vendors

$ php composer.phar update

Register migration

$ ./console migrations:version --add 20131013132150

Update between 1.x versions

Switch to branch 1.x

$ git fetch
$ git checkout v1.x

Update vendors

$ php composer.phar update

Apply changes to database

$ ./console migrations:migrate

Add to parameters.yml new options from parameters.yml.dist.

More Information

Documentation in Wiki.

License

Intaro Pinboard is licensed under the MIT license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].