https://github.com/howdoicomputer/polarstomps
https://github.com/howdoicomputer/polarstomps
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/howdoicomputer/polarstomps
- Owner: howdoicomputer
- Created: 2023-12-14T06:36:16.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-21T20:38:56.000Z (almost 2 years ago)
- Last Synced: 2024-10-22T15:23:41.558Z (almost 2 years ago)
- Language: templ
- Size: 123 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# About
Polarstomps is demo web application written in the [Templ](https://templ.guide/) Go library. It is meant to be used as a demo application for using ArgoCD on top of an EKS cluster. It is not a real project.
# Dependencies
* Redis
* GCS (or local emulation)
* Docker (if emulating GCS locally)
## Redis
This web application will write to Redis as an example of communicating with a datastore in GCP. This means that a locally hosted Redis is required.
## GCS
This web application will read a list of objects from a GCS bucket. This can be done locally using a GCS emulation server. Run `make gcs-emu` and look at `.envrc`.
# Running
``` sh
templ generate
go build
./polarstomps
```
---