Notejam application implemented using Yii framework.
Yii version: 2.0
PHP version required: 5.4+
Clone the repo:
$ git clone [email protected]:komarserjio/notejam.git YOUR_PROJECT_DIR/
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
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 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.