Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 478 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 478 Bytes

ETL micro-service

Setup

Register with Socrata and create an application.

git clone https://github.com/invisiblefunnel/etl-me.git
cd etl-me
bundle install
cp .env.sample .env 
# Add your APP_TOKEN from Socrata to .env
bundle exec rackup

Deploy (Heroku)

heroku create <app-name>
heroku config:set APP_TOKEN=yourtoken
heroku config:set CACHE_TTL=600 # seconds
git push heroku master
heroku open