Rails 6 Finance Stock Tracker

Versions

Ruby 2.7 Rails 6 Bootstrap 5

IEX API integration configuration

Credentials configured via Rails 6 credentials storage mechanism encrypted with master key. To get access to the credential using VSCode for example type in your CLI:

EDITOR="code --wait" rails credentials:edit

To get access keys register at official IEX website

Add the credentials given on registration finished to the configuration Yaml file opened by the command above this way

iex:
  publishable_token: ""
  secret_token: ""
  endpoint: ""

More information about iex-ryby-client IEX integration gem in the official repo.