diff options
| author | Teddy Wing | 2013-04-28 00:56:35 -0400 |
|---|---|---|
| committer | Teddy Wing | 2013-04-28 00:56:35 -0400 |
| commit | a1a3d44c8703f7f63a51106fa8777c2f3eee8e89 (patch) | |
| tree | dcb558930638a3103fe4d5e2b551c8a18bae3c6c /config.js | |
| parent | 6331e7dbb295700772548ac6b07a501c0309013b (diff) | |
| download | Who-am-I-a1a3d44c8703f7f63a51106fa8777c2f3eee8e89.tar.bz2 | |
Dynamically fetch character images from TMS API
* /character-images endpoint now dynamically fetches images from the
TMS API
* Add a config.js file
Diffstat (limited to 'config.js')
| -rw-r--r-- | config.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/config.js b/config.js new file mode 100644 index 0000000..8c417ee --- /dev/null +++ b/config.js @@ -0,0 +1,8 @@ +var config = {} + +config.tms = { + host: 'http://data.tmsapi.com', + key: process.env.TMS_API_KEY +}; + +module.exports = config;
\ No newline at end of file |
