https://github.com/paulkinlan/io-reader
https://github.com/paulkinlan/io-reader
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/paulkinlan/io-reader
- Owner: PaulKinlan
- License: apache-2.0
- Created: 2011-03-09T18:03:39.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2011-05-08T23:38:10.000Z (about 14 years ago)
- Last Synced: 2025-04-01T16:59:19.418Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 1.33 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
io-reader server
================This is a basic proxying server that has some state.
The server runs an instance of the configuration document, which includes the type of API proxy to use and the categories to display.
There are two API proxies included:
* Guardian
* NPRInstallation
------------* Install node https://github.com/joyent/node/wiki/Installation
* Install npm http://npmjs.org/
* npm install express mustache async less uglify-jsRunning the app
---------------There are three modes to run the application. Test, Development and Production.
Test
----Test mode runs with a dummy data provider that allows you quick and consistent access to the app and allows you to work offline.
In an emergency, this can be used to host demo for IO.
Test mode runs with all the same parameters as development mode.To enter Test mode, run ./run.sh test
Development
-----------
Development mode runs the code against a real data source.
Exceptions are show, and the stackTrace too.
All Logging is sent to the STDOUT.To enter development mode, run ./run.sh development
Production
----------Exceptions and Stack traces are disabled.
All client code and HTML is minified.
All logging is disabled.To enter production mode, run ./run.sh production
When production mode is run, it will compile all the latest changes to the CSS and minify the JS - no live changes to the less files are allowed.