Compare commits
No commits in common. "0847d58bda6ee980e27664cdb76e79c54e9d3ae1" and "eb0384471cd964197683dadd0496cc3c7416f3a4" have entirely different histories.
0847d58bda
...
eb0384471c
@ -16,4 +16,3 @@ lerna-debug.log*
|
||||
.vscode
|
||||
*.code-workspace
|
||||
.history/
|
||||
Dockerfile
|
||||
|
19
Dockerfile
19
Dockerfile
@ -1,19 +0,0 @@
|
||||
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
|
||||
|
||||
IMAGE ?= docker.cluster.fun/averagemarcus/talks:latest
|
||||
IMAGE ?= docker.cluster.fun/private/talks:latest
|
||||
|
||||
.PHONY: test # Run all tests, linting and format checks
|
||||
test: lint check-format run-tests
|
||||
@ -33,11 +33,17 @@ run-tests:
|
||||
|
||||
.PHONY: fetch-deps # Fetch all project dependencies
|
||||
fetch-deps:
|
||||
@npm install -g @marp-team/marp-cli
|
||||
@echo "⚠️ 'fetch-deps' unimplemented"
|
||||
# GO Projects
|
||||
# @go mod tidy
|
||||
# Node Projects
|
||||
# @npm install
|
||||
|
||||
.PHONY: build # Build the project
|
||||
build: lint check-format fetch-deps
|
||||
@find . -maxdepth 2 -mindepth 2 -name "*.md" -not -name "README.md" -print0 | xargs -0 marp {} \;
|
||||
@echo "⚠️ 'build' unimplemented"
|
||||
# GO Projects
|
||||
# @go build -o PROJECT_NAME main.go
|
||||
|
||||
.PHONY: docker-build # Build the docker image
|
||||
docker-build:
|
||||
@ -48,8 +54,12 @@ docker-publish:
|
||||
@docker push $(IMAGE)
|
||||
|
||||
.PHONY: run # Run the application
|
||||
run: docker-build
|
||||
@docker run --rm -it -p 8080:80 $(IMAGE)
|
||||
run:
|
||||
@echo "⚠️ 'run' unimplemented"
|
||||
# GO Projects
|
||||
# @go run main.go
|
||||
# Node Projects
|
||||
# @npm start
|
||||
|
||||
.PHONY: ci # Perform CI specific tasks to perform on a pull request
|
||||
ci:
|
||||
|
1
PersonalInfrastructure/.gitignore
vendored
1
PersonalInfrastructure/.gitignore
vendored
@ -1 +0,0 @@
|
||||
*.html
|
File diff suppressed because one or more lines are too long
33
index.html
33
index.html
@ -1,33 +0,0 @@
|
||||
<!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