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

PHP version required: 5.4+

Installation and launching

Clone

Clone the repo:

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

Install

Install composer

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

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
$ php -S localhost: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.