Skip to content

Latest commit

 

History

History

laravel

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Notejam: Laravel

Notejam application implemented using Laravel framework.

Laravel version: 4.1

Installation and launching

Clone

Clone the repo:

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

Install

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

Launch

Start laravel web server:

$ cd YOUR_PROJECT_DIR/laravel/notejam/
$ php artisan serve

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

Run tests

Run functional and unit tests:

$ cd YOUR_PROJECT_DIR/laravel/notejam/
$ php vendor/bin/phpunit

Contribution

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.