https://github.com/florianv/notes
Symfony2 + Backbone Marionette app
https://github.com/florianv/notes
Last synced: 9 months ago
JSON representation
Symfony2 + Backbone Marionette app
- Host: GitHub
- URL: https://github.com/florianv/notes
- Owner: florianv
- License: mit
- Created: 2014-04-28T23:54:52.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-09-14T20:18:09.000Z (over 9 years ago)
- Last Synced: 2025-03-27T05:41:39.135Z (9 months ago)
- Language: PHP
- Homepage:
- Size: 129 KB
- Stars: 14
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Notes

[](https://travis-ci.org/florianv/notes)
The backend is a REST API secured by OAuth2 (Resource Owner Password Credentials Grant) based on [Symfony2](http://symfony.com)
and the frontend is a [Marionette](http://marionettejs.com) MVC application in CoffeeScript.
## Installation
### Requirements
- [Composer](https://getcomposer.org/download)
- [NPM](https://www.npmjs.org)
- [Bower](http://bower.io)
- [Grunt](http://gruntjs.com)
You will need the APC extension to run the application in the prod environment
or change the [config](https://github.com/florianv/notes/blob/master/app/config/config_prod.yml#L4-L12).
### Steps
```bash
$ git clone https://github.com/florianv/notes
$ composer update
$ php app/console doctrine:database:create --env=prod
$ php app/console doctrine:schema:update --force --env=prod
$ php app/console doctrine:fixtures:load --env=prod
$ npm install
$ bower install
$ grunt
```
## Running tests
Requires the `pdo_sqlite` extension.
```bash
$ phpunit -c app/
```
## License
[MIT](https://github.com/florianv/notes/blob/master/LICENSE)