commit 4ab17e5872681efa9de66f5a90cfd6e33cdad416 Author: charles Date: Sun Oct 12 21:30:25 2025 -0700 add: basic start diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..cb54b30 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "theme"] + path = theme + url = https://github.com/gwannon/Cyberpunk-2077-theme-css.git diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..cc66541 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,3 @@ +FROM nginx + +COPY . /usr/share/nginx/html \ No newline at end of file diff --git a/img/qrcode.png b/img/qrcode.png new file mode 100644 index 0000000..3f1af7a Binary files /dev/null and b/img/qrcode.png differ diff --git a/img/twitchy.png b/img/twitchy.png new file mode 100644 index 0000000..17a2473 Binary files /dev/null and b/img/twitchy.png differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..97a4710 --- /dev/null +++ b/index.html @@ -0,0 +1,73 @@ + + + + + + + + + + +
+ +

Prove yourself. Hack the ...

+
+ + +
+
+ + + + + + + \ No newline at end of file diff --git a/kubernetes.yaml b/kubernetes.yaml new file mode 100644 index 0000000..3c30ab5 --- /dev/null +++ b/kubernetes.yaml @@ -0,0 +1,34 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: orangepunk-deployment +spec: + replicas: 1 + selector: + matchLabels: + app: orangepunk + template: + metadata: + labels: + app: orangepunk + app.kubernetes.io/name: orangepunk + spec: + containers: + - name: orangepunk-container + image: us-west4-docker.pkg.dev/nixernetes/images/orangepunk-html:0.0.3 + ports: + - containerPort: 80 +--- +apiVersion: v1 +kind: Service +metadata: + name: orangepunk-service +spec: + selector: + app.kubernetes.io/name: orangepunk + ports: + - protocol: TCP + port: 80 + targetPort: 80 + nodePort: 30014 + type: NodePort diff --git a/style.css b/style.css new file mode 100644 index 0000000..b7fefd7 --- /dev/null +++ b/style.css @@ -0,0 +1,14 @@ +.hidden { + display: none; +} + +.portrait { + width: 150x; + height: 150px; + margin: 20px; + float: left; +} + +.job-listing { + min-height: 250px; +} \ No newline at end of file diff --git a/theme b/theme new file mode 160000 index 0000000..206c43f --- /dev/null +++ b/theme @@ -0,0 +1 @@ +Subproject commit 206c43f6bc1deeaec45ddd30a329502c344ef675