Added Personal Infrastructure talk

This commit is contained in:
Marcus Noble 2021-02-10 09:45:42 +00:00
parent 624ef4f394
commit bf05413aff
7 changed files with 418 additions and 15 deletions

View File

@ -16,3 +16,4 @@ lerna-debug.log*
.vscode
*.code-workspace
.history/
Dockerfile

19
Dockerfile Normal file
View File

@ -0,0 +1,19 @@
FROM node:14-alpine AS builder
WORKDIR /app
RUN npm install -g @marp-team/marp-cli
ADD . .
RUN find . -maxdepth 2 -mindepth 2 -name "*.md" -not -name "README.md" -print0 | xargs -0 marp {} \;
RUN mkdir -p out && \
find . -maxdepth 2 -mindepth 2 -name "*.html" -exec mv {} ./out/ \;
FROM nginx:stable-alpine
ENV NGINX_ENTRYPOINT_QUIET_LOGS=1
COPY --from=builder /app/out/* /usr/share/nginx/html/
ADD index.html /usr/share/nginx/html/index.html
RUN echo "server { listen 80; server_name localhost; location / { root /usr/share/nginx/html; index index.html; rewrite ^/([a-zA-Z0-9\-_]+)/?$ /\$1.html last; } }" > /etc/nginx/conf.d/default.conf

View File

@ -1,6 +1,6 @@
.DEFAULT_GOAL := default
IMAGE ?= docker.cluster.fun/private/talks:latest
IMAGE ?= docker.cluster.fun/averagemarcus/talks:latest
.PHONY: test # Run all tests, linting and format checks
test: lint check-format run-tests
@ -33,17 +33,11 @@ run-tests:
.PHONY: fetch-deps # Fetch all project dependencies
fetch-deps:
@echo "⚠️ 'fetch-deps' unimplemented"
# GO Projects
# @go mod tidy
# Node Projects
# @npm install
@npm install -g @marp-team/marp-cli
.PHONY: build # Build the project
build: lint check-format fetch-deps
@echo "⚠️ 'build' unimplemented"
# GO Projects
# @go build -o PROJECT_NAME main.go
@find . -maxdepth 2 -mindepth 2 -name "*.md" -not -name "README.md" -print0 | xargs -0 marp {} \;
.PHONY: docker-build # Build the docker image
docker-build:
@ -54,12 +48,8 @@ docker-publish:
@docker push $(IMAGE)
.PHONY: run # Run the application
run:
@echo "⚠️ 'run' unimplemented"
# GO Projects
# @go run main.go
# Node Projects
# @npm start
run: docker-build
@docker run --rm -it -p 8080:80 $(IMAGE)
.PHONY: ci # Perform CI specific tasks to perform on a pull request
ci:

1
PersonalInfrastructure/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*.html

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,3 @@
# Personal Infrastructure
A casual talk given at [Not JSOxford](https://not.jsoxford.com/) on 10th February 2021 about my personal infrastructure setup, my smart home devices and how I make use of Kubernetes for a bunch of stuff.

33
index.html Normal file
View File

@ -0,0 +1,33 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Talks</title>
<style>
body {
display: flex;
flex-direction: column;
text-align: center;
font-size: 2em;
font-family: monospace;
background-color: gainsboro;
}
a {
color: tomato !important;
}
</style>
</head>
<body>
<h1>Marcus Noble - Talks</h1>
<figure>
<iframe src="/PersonalInfrastructure" width="500px" height="300px"></iframe>
<figcaption>
<a href="/PersonalInfrastructure">Personal Infrastructure</a>
</figcaption>
</figure>
</body>
</html>