Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 1.26 KB

README.md

File metadata and controls

42 lines (30 loc) · 1.26 KB

Welcome to starling-insights-api 👋

An API built with micronaut that interacts with my banking data, served with the Starling API. This python script runs once a month and fetches all the data from this API, deployed on heroku using docker. This project was fun and is a good building block to build more API integration with Starling :).

Run it

./gradlew run to run the app.

You will need a Starling personal token to go inside your Authorization header for your requests.

Deploy Micronaut apps on Heroku using:

./gradlew stage
heroku container:push web
heroku container:release web

Doing ./gradlew stage meant adding this to build.gradle:

task stage {
    dependsOn "build"
    dependsOn "clean"
    build.mustRunAfter "clean"
}

Author

👤 Leo Le Bleis

Show your support

Give a ⭐️ if this project helped you!


This README was generated with ❤️ by readme-md-generator