Compare commits
10 Commits
master
...
personal-i
Author | SHA1 | Date | |
---|---|---|---|
0847d58bda | |||
b77c3f8e89 | |||
eb0384471c | |||
4d77dd93d1 | |||
dd75df19c3 | |||
ee497b0ecc | |||
2922857646 | |||
ab7c725827 | |||
2c98f306c4 | |||
c0ec952684 |
@ -16,3 +16,4 @@ lerna-debug.log*
|
|||||||
.vscode
|
.vscode
|
||||||
*.code-workspace
|
*.code-workspace
|
||||||
.history/
|
.history/
|
||||||
|
Dockerfile
|
||||||
|
19
Dockerfile
Normal file
19
Dockerfile
Normal 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
|
20
Makefile
20
Makefile
@ -1,6 +1,6 @@
|
|||||||
.DEFAULT_GOAL := default
|
.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
|
.PHONY: test # Run all tests, linting and format checks
|
||||||
test: lint check-format run-tests
|
test: lint check-format run-tests
|
||||||
@ -33,17 +33,11 @@ run-tests:
|
|||||||
|
|
||||||
.PHONY: fetch-deps # Fetch all project dependencies
|
.PHONY: fetch-deps # Fetch all project dependencies
|
||||||
fetch-deps:
|
fetch-deps:
|
||||||
@echo "⚠️ 'fetch-deps' unimplemented"
|
@npm install -g @marp-team/marp-cli
|
||||||
# GO Projects
|
|
||||||
# @go mod tidy
|
|
||||||
# Node Projects
|
|
||||||
# @npm install
|
|
||||||
|
|
||||||
.PHONY: build # Build the project
|
.PHONY: build # Build the project
|
||||||
build: lint check-format fetch-deps
|
build: lint check-format fetch-deps
|
||||||
@echo "⚠️ 'build' unimplemented"
|
@find . -maxdepth 2 -mindepth 2 -name "*.md" -not -name "README.md" -print0 | xargs -0 marp {} \;
|
||||||
# GO Projects
|
|
||||||
# @go build -o PROJECT_NAME main.go
|
|
||||||
|
|
||||||
.PHONY: docker-build # Build the docker image
|
.PHONY: docker-build # Build the docker image
|
||||||
docker-build:
|
docker-build:
|
||||||
@ -54,12 +48,8 @@ docker-publish:
|
|||||||
@docker push $(IMAGE)
|
@docker push $(IMAGE)
|
||||||
|
|
||||||
.PHONY: run # Run the application
|
.PHONY: run # Run the application
|
||||||
run:
|
run: docker-build
|
||||||
@echo "⚠️ 'run' unimplemented"
|
@docker run --rm -it -p 8080:80 $(IMAGE)
|
||||||
# GO Projects
|
|
||||||
# @go run main.go
|
|
||||||
# Node Projects
|
|
||||||
# @npm start
|
|
||||||
|
|
||||||
.PHONY: ci # Perform CI specific tasks to perform on a pull request
|
.PHONY: ci # Perform CI specific tasks to perform on a pull request
|
||||||
ci:
|
ci:
|
||||||
|
1
PersonalInfrastructure/.gitignore
vendored
Normal file
1
PersonalInfrastructure/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
*.html
|
356
PersonalInfrastructure/PersonalInfrastructure.md
Normal file
356
PersonalInfrastructure/PersonalInfrastructure.md
Normal file
File diff suppressed because one or more lines are too long
3
PersonalInfrastructure/README.md
Normal file
3
PersonalInfrastructure/README.md
Normal 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
33
index.html
Normal 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>
|
Loading…
Reference in New Issue
Block a user