2017 © Pedro Peláez
 

library base-app

Neblion base application from symfony/framework-standard-edition

image

neblion/base-app

Neblion base application from symfony/framework-standard-edition

  • Tuesday, May 14, 2013
  • by tbibard
  • Repository
  • 2 Watchers
  • 0 Stars
  • 7 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Neblion/BaseApp Symfony2 app

Neblion/BaseApp is a Symfony2 base application on top on symfony/framework-standard-edition. Working in progress, no stable release yet...., (*1)

Build Status, (*2)

Neblion/BaseApp contain: - stof/doctrine-extensions-bundle - doctrine/doctrine-fixtures-bundle - friendsofsymfony/user-bundle - JQuery 1.9.1 - twitter/bootstrap, (*3)

Installation

Requirements

You have to install and configure a Web server (such as Apache) with a recent version of PHP5 (5.3.8 or newer is recommended) and a database server. You also have to install composer (dependency management library for PHP), you should install it globally on your system., (*4)

As Neblion/BaseApp is a symfony app, you can find more informations on Symfony2 requirements at requirements reference. For information on configuring your specific web server document root, see the following documentation: Apache., (*5)

Step by step installation

  1. Install via composer and packagist, (*6)

    composer create-project neblion/base-app <your-installation-path>
  2. Create you vhost and configure DocumentRoot to --> <your-path>/web and check your config: http://<your-host>/config.php, (*7)

  3. Set permission on file system see Symfony2 install., (*8)

  4. Create your DB and a user DB (if you use MySQL):, (*9)

    mysql -uroot -p
    <enter_mysql_root_pass>
    create database <DB_NAME>;
    grant all privileges on <DB-NAME>.* to '<YOUR-USERNAME>'@'localhost' identified by 'YOUR-PASSWORD' with grant option;
    flush privileges;
  5. Set your parameters.yml, (*10)

  6. Run commands, (*11)

    cd <your-installation-path>
    php app/console doctrine:schema:update --force
    php app/console assets:install
    php app/console assetic:dump
  7. All done, test it!, (*12)

Documentation

Work in progress..., (*13)

Support and contact

thomas.bibard@neblion.net, (*14)

Tests

phpunit -c app

Continuous Integration On Travis-ci Platform...Build Status, (*15)

License

Neblion/BaseApp is a free software licensed under the GNU Affero General Public License V3., (*16)

Credits

The Versions

14/05 2013

dev-master

9999999-dev

Neblion base application from symfony/framework-standard-edition

  Sources   Download

AGPL-3.0

The Requires

 

by Thomas Bibard