Skip to content

Latest commit

 

History

History

nette

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Notejam: Nette Framework

Notejam application implemented using Nette framework.

Nette version: 2.3

Installation and launching

Clone

Clone the repo:

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

Install

Install composer

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

Install dependencies

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

Create your copy of config.local.neon

$ cd YOUR_PROJECT_DIR/nette/notejam
$ cp app/config/config.example.neon app/config/config.local.neon

Create database schema

$ cd YOUR_PROJECT_DIR/nette/notejam
$ php ./bin/create-db.php

Launch

Start built-in php web server:

$ cd YOUR_PROJECT_DIR/nette/notejam/www/
$ php -t `pwd` -S 127.0.0.1:8000 `pwd`/index.php

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

Run tests

Run tests:

$ cd YOUR_PROJECT_DIR/nette/notejam/www/
$ php -t `pwd` -S 127.0.0.1:8000 `pwd`/index.php
$ cd ../
$ ./vendor/bin/codecept run

Contribution

Do you have php/nette experience? Help the app to follow php and Nette Framework best practices.

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

Nette: Implemented sign in functionality

Read contribution guide for details.