Go to file
Adam Veldhousen eb4fe808d7
fails because browser cannot find /api/v1
2023-06-02 18:30:15 -05:00
.vscode Web client (#5) 2023-05-20 06:45:31 +00:00
doc fix up tiltfile 2023-06-02 17:19:36 -05:00
env switch to secrets 2023-06-02 17:19:18 -05:00
src fails because browser cannot find /api/v1 2023-06-02 18:30:15 -05:00
.gitignore Squashed commit of the following: 2023-05-30 23:04:04 -05:00
.sops.yaml Squashed commit of the following: 2023-05-30 23:04:04 -05:00
.tool-versions Squashed commit of the following: 2023-05-30 23:04:04 -05:00
LICENSE docs and architecture planning 2023-04-16 13:06:10 -05:00
Makefile Squashed commit of the following: 2023-05-30 23:04:04 -05:00
README.md Squashed commit of the following: 2023-05-30 23:04:04 -05:00
Tiltfile fix up tiltfile 2023-06-02 17:19:36 -05:00
go.work Catalog service (#3) 2023-05-14 01:53:34 +00:00
go.work.sum Catalog service (#3) 2023-05-14 01:53:34 +00:00

README.md

Barretthousen

Search and get alerts for items across the most popular auction sites.

Built with microservice architecture, for learning purposes

Goals

  1. Ability to search upcoming and live auctions across major auction sites
  2. Get an email digest of upcoming auctions for the week

Future goals

  1. Get email alerts when these auctions are about to go live
  2. Specify search criteria for email alerts

Technology

For Users

For Admins

Arcchitecure Diagram MVP

Services

  • Web-client Frontend site that users access to browse upcoming auctions and subscribe for updates to their searches

  • Catalog API for searching upcoming auctions.

  • Ringman Manages email subscriptions and sending emails to users about upcoming auctions.

  • Runner Scrapes sites for upcoming auctions. Transforms the data into a suitable shape and stores it for use by the frontend.

  • Auctioneer Enables site administrators to kicks off scrape and email jobs in Runner and Ringman, and view status on current/past jobs.

  • BHDB Monolithic postgres datbabase tying it all together

Contributing

Install asdf and run hack/asdf_plugin_setup

# install asdf tools, build tooling, encryption key for sops
make setup

# generate protobufs and sql boilerplate
make gen

# spin up a k8s cluster, build and deploy services locally w/ hot reloading
make dev

# build production docker images for the backend microservices, optionally push to the respective env
make build-backend-image SERVICE=[catalog, runner, proxy-client, proxy-admin] [ENV=[beta, prod]]

# build client docker image for web frontends, optionally push to the respective env
make build-client-image SERVICE=[web-client] [ENV=[beta, prod]]