Skip to content

Latest commit

 

History

History

yii

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Notejam: Yii

Notejam application implemented using Yii framework.

Yii version: 2.0.6

PHP version required: 5.4+

Installation and launching

Clone

Clone the repo:

$ git clone https://github.com/komarserjio/notejam YOUR_PROJECT_DIR/

Install

Install composer

$ cd YOUR_PROJECT_DIR/yii/notejam
$ curl -s https://getcomposer.org/installer | php
$ php composer.phar global require "fxp/composer-asset-plugin:~1.1.0"

Install dependencies

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

Create database schema

$ cd YOUR_PROJECT_DIR/yii/notejam
$ ./yii migrate

Launch

Start built-in php web server:

$ cd YOUR_PROJECT_DIR/yii/notejam/web
$ ./yii serve --port=8000

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

Run tests

Run functional tests:

$ cd YOUR_PROJECT_DIR/yii/notejam/
$ ./vendor/bin/codecept build
$ ./vendor/bin/codecept run functional

Contribution

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

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

Yii: Implemented sign in functionality

Read contribution guide for details.