Skip to content

citygram/etl-me

Repository files navigation

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