Notejam application implemented using Laravel framework.
Laravel version: 4.1
Clone the repo:
$ git clone [email protected]:komarserjio/notejam.git YOUR_PROJECT_DIR/
Install composer
$ cd YOUR_PROJECT_DIR/laravel/notejam/
$ curl -s https://getcomposer.org/installer | php
Install dependencies
$ cd YOUR_PROJECT_DIR/laravel/notejam/
$ php composer.phar install
Create database schema
$ cd YOUR_PROJECT_DIR/laravel/notejam/
$ touch app/database/notejam.db
$ php artisan migrate
Start laravel web server:
$ cd YOUR_PROJECT_DIR/laravel/notejam/
$ php artisan serve
Go to http://localhost:8000/ in your browser.
Run functional and unit tests:
$ cd YOUR_PROJECT_DIR/laravel/notejam/
$ php vendor/bin/phpunit
Do you have php/laravel experience? Help the app to follow php and laravel best practices.
Please send your pull requests in the master
branch.
Always prepend your commits with framework name:
Laravel: Implemented sign in functionality
Read contribution guide for details.