Notejam application implemented using Yii framework.
Yii version: 2.0.6
PHP version required: 5.4+
Clone the repo:
$ git clone https://github.com/komarserjio/notejam YOUR_PROJECT_DIR/
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
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 functional tests:
$ cd YOUR_PROJECT_DIR/yii/notejam/
$ ./vendor/bin/codecept build
$ ./vendor/bin/codecept run functional
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.