### Install Dependencies (Ruby) Source: https://github.com/airtable/airtable_api_proxy/blob/master/README.md Installs all necessary Ruby gems for the application using Bundler. ```shell bundle ``` -------------------------------- ### Start Local Proxy Server Source: https://github.com/airtable/airtable_api_proxy/blob/master/README.md Starts the local API proxy server using Rackup on port 9292. Requires setting environment variables for Airtable API key and Base ID. ```shell export AIRTABLE_API_KEY=keyA3f3... # your API key here export AIRTABLE_BASE_ID=app22ddr # your Base ID here bundle exec rackup -p 9292 config.ru ``` -------------------------------- ### Deploy to Heroku Source: https://github.com/airtable/airtable_api_proxy/blob/master/README.md Steps to deploy the Airtable API proxy application to Heroku, including creating an app, pushing code, and configuring environment variables. ```shell heroku login heroku create git push heroku master heroku config:set AIRTABLE_API_KEY='keyASD' # Your API key here heroku config:set AIRTABLE_BASE_ID='app33f' # Your Base ID here heroku open ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.