/resume-api

Open source REST API for my JSON-based standard format resume

Primary LanguageGoMIT LicenseMIT

resume-api

logo

CI/CD

What is it?

Open source REST API for my JSON-based standard format resume. I'm using Go for my app, Terraform for my Infrastructure as Code (IaC) with Terraform Cloud to provision my infrastructure, either on demand or in response to various events. I'm deploying the app to AWS Lambda with a Circle CI CI/CD pipeline.

How can I see or use it?

You can hit the REST API via curl:

curl -L https://resume.mattjarrett.dev

You can view it via web browser:

https://resume.mattjarrett.dev

Why

To build something simple with Go to get more experience with the language. To expose my resume as an API as JSON-based standard for resumes.

Why Go?

  • It's compiled. So you get small binaries.
  • It's fast. (slower than c/c++ or rust) but faster than most other web programming languages.
  • Fast growing

Full Write Up

I wrote a short post on how I implemented this on Dev.to.