Skip to content

Latest commit

 

History

History

symfony

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Notejam: Symfony

Notejam application implemented using Symfony framework.

Symfony version: 2.7

The application is maintained by @aminemat.

Installation and launching

Clone

Clone the repo:

$ git clone [email protected]:komarserjio/notejam.git YOUR_PROJECT_DIR/

Install

Install composer

$ cd YOUR_PROJECT_DIR/symfony/notejam
$ curl -s https://getcomposer.org/installer | php

Install dependencies

$ cd YOUR_PROJECT_DIR/symfony/notejam
$ php composer.phar install

Create database schema

$ cd YOUR_PROJECT_DIR/symfony/notejam
$ php app/console doctrine:schema:update --force

Launch

Start built-in symfony web server:

$ cd YOUR_PROJECT_DIR/symfony/notejam/
$ php app/console server:run

Go to http://localhost:8000/ in your browser.

Run tests

Run tests:

$ cd YOUR_PROJECT_DIR/symfony/notejam/
$ ./bin/phpunit -c app/

Contribution

Do you have php/symfony experience? Help the app to follow php and symfony best practices.

Please send your pull requests in the master branch. Always prepend your commits with framework name:

Symfony: Implemented sign in functionality

Read contribution guide for details.