feat: ship a web app (#218)

* feat(orion): add endpoint for link metadata

* refactor: cleanup comments

* wip: plumbing for building a web app

* setup deployment materials for web app

* fix(web): favicon
This commit was merged in pull request #218.
This commit is contained in:
Arjun Patel
2026-05-26 15:37:35 -07:00
committed by GitHub
parent 173c63508a
commit 64f02d1c3b
51 changed files with 1260 additions and 238 deletions
+38
View File
@@ -0,0 +1,38 @@
apiVersion: skaffold/v4beta11
kind: Config
metadata:
name: llink-web
build:
local: {}
tagPolicy:
gitCommit:
variant: AbbrevCommitSha
profiles:
- name: dev
build:
artifacts:
- image: llink-web
context: .
docker:
dockerfile: Dockerfile
buildArgs:
APP_ENV: dev
manifests:
rawYaml:
- k8s/dev/llink-web.yaml
deploy:
kubectl: {}
- name: prod
build:
artifacts:
- image: llink-web
context: .
docker:
dockerfile: Dockerfile
buildArgs:
APP_ENV: prod
manifests:
rawYaml:
- k8s/prod/llink-web.yaml
deploy:
kubectl: {}