Simple angular js application that can be used to call external http servers and transform requests & responses into TuTu configuration
Application is still under rapid development
- Install npm (nodejs package manager - install node.js) dependencies
$ npm install
- Install bower dependencies
$ node_modules/.bin/bower install
- Install composer (php package manager - install composer) dependencies
$ php composer.phar install
- Run grunt
$ node_modules/.bin/grunt
- Because this application use php and should not be hosted anywhere php build-in web server is perfect choice to execute it.
$ cd app
$ php -S localhost:8000
-
Open http://localhost:8000 in your browser.
-
Have fun!
In order to prevent security issues this application should be never hosted in any public place. That's why all "deployment" grunt tasks were removed. It should be executed only locally using build-in php server.