https://github.com/coduo/tutu-recorder
Simple angular js application that can be used to call external http servers and transform requests & responses into TuTu configuration
https://github.com/coduo/tutu-recorder
Last synced: 8 months ago
JSON representation
Simple angular js application that can be used to call external http servers and transform requests & responses into TuTu configuration
- Host: GitHub
- URL: https://github.com/coduo/tutu-recorder
- Owner: coduo
- Created: 2014-11-01T14:19:52.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-11-29T14:33:46.000Z (about 11 years ago)
- Last Synced: 2025-06-03T06:10:43.602Z (9 months ago)
- Language: JavaScript
- Size: 250 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TuTu Recorder
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**
## Before you start
1) Install npm (nodejs package manager - [install node.js](http://nodejs.org/download/)) dependencies
```
$ npm install
```
2) Install bower dependencies
```
$ node_modules/.bin/bower install
```
3) Install composer (php package manager - [install composer](https://getcomposer.org/download/)) dependencies
```
$ php composer.phar install
```
4) Run grunt
```
$ node_modules/.bin/grunt
```
## How to use
1) 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
```
2) Open http://localhost:8000 in your browser.
3) Have fun!
## Security
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.