Add Initial Quickstart/Starter Kit ⚙️#12
Closed
lbeckman314 wants to merge 9 commits intofeature/better-middlewarefrom
Closed
Add Initial Quickstart/Starter Kit ⚙️#12lbeckman314 wants to merge 9 commits intofeature/better-middlewarefrom
lbeckman314 wants to merge 9 commits intofeature/better-middlewarefrom
Conversation
✅ Deploy Preview for drs-server ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
bwalsh
requested changes
Mar 18, 2026
Comment on lines
+28
to
+56
| steps: | ||
| - name: Prepare | ||
| run: | | ||
| platform=${{ matrix.platform }} | ||
| echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV | ||
|
|
||
| - name: Docker meta | ||
| id: meta | ||
| uses: docker/metadata-action@v5 | ||
| with: | ||
| images: | | ||
| ${{ env.GHCR_REPO }} | ||
|
|
||
| - name: Login to GHCR | ||
| uses: docker/login-action@v3 | ||
| with: | ||
| registry: ghcr.io | ||
| username: ${{ github.actor }} | ||
| password: ${{ secrets.GITHUB_TOKEN }} | ||
|
|
||
| - name: Set up QEMU | ||
| uses: docker/setup-qemu-action@v3 | ||
|
|
||
| - name: Set up Docker Buildx | ||
| uses: docker/setup-buildx-action@v3 | ||
|
|
||
| - name: Build and push by digest | ||
| id: build | ||
| uses: docker/build-push-action@v6 |
| - [ ] Listing | ||
| - [ ] Registering | ||
| - [ ] Retrieving/Resolving DRS URI's → files | ||
|
|
Contributor
There was a problem hiding this comment.
@lbeckman314 Can you expand on this list in a more or less formal git issue
Then remove it from the docs/index.md
Comment on lines
+32
to
+33
| # TODO: Change to latest tag when stable | ||
| # docker run -p 8080:8080 ghcr.io/calypr/drs-server:latest |
Contributor
There was a problem hiding this comment.
Please change to something like
to launch a development branch:
docker run -p 8080:8080 ghcr.io/calypr/drs-server:
to launch a latest release branch:
docker run -p 8080:8080 ghcr.io/calypr/drs-server:latest
| "caller": "server/main.go:123", | ||
| "msg": "listening", | ||
| "addr": ":8080" | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Overview 🌀
This PR adds initial files for a "one click" starter version as requested in #10
Tip
Deploy Preview
Changelog ⚙️
Add Swagger API example → API (Swagger)
Add workflow for building and pushing Docker image to GHCR (example image)
Note
Currently pushes to GHCR as an experiment (code and images living together—mass hysteria!!) but can easily be adapted to Quay.io instead...
requirements.txt) required for Netlify deploy previews