https://github.com/brolaugh/fixer-io-mongo-proxy
https://github.com/brolaugh/fixer-io-mongo-proxy
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/brolaugh/fixer-io-mongo-proxy
- Owner: brolaugh
- License: mit
- Created: 2018-06-29T14:12:34.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-06-01T14:07:26.000Z (almost 2 years ago)
- Last Synced: 2025-01-24T22:42:25.930Z (4 months ago)
- Language: JavaScript
- Size: 57.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Fixer.io MongoDB proxy
A simple web app that stores fixer.io results in mongodb to prevent rate limiting
## Setup
Set up can be done two ways, either through enviroment variables or through the a config file.
If you choose the enviroment variable approach you'll need to set `MONGODB_URI`and `FIXER_ACCESS_KEY` to it's respective values. If you want to go the config file route you must create a file in the `config` directory with the name either `production.json` or `development.json` for the two usecases of enviroment.Here's a default template for your config.
```
{
"mongodbUri": "",
"fixerAccessKey": ""
}
```