Skip to content

Commit

Permalink
New style with narrow body, header and footer; private contact inform…
Browse files Browse the repository at this point in the history
…ation with just and CLI arguments; updated typst
kadykov committed Oct 21, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent aed3868 commit 36af241
Showing 6 changed files with 339 additions and 120 deletions.
3 changes: 2 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -19,7 +19,8 @@
"vscode": {
"extensions": [
"ms-azuretools.vscode-docker",
"nvarner.typst-lsp"
"nvarner.typst-lsp",
"skellock.just"
]
}
}
2 changes: 2 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
EMAIL="[email protected]"
PHONE="+1 (234) 56 78 90"
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
*.pdf
.env
8 changes: 6 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM alpine:3.20 AS Builder

ARG TYPST_VERSION=v0.11.1
ARG TYPST_VERSION=v0.12.0

RUN wget -qO typst.tar.xz https://github.com/typst/typst/releases/download/${TYPST_VERSION}/typst-x86_64-unknown-linux-musl.tar.xz \
&& tar xf typst.tar.xz
@@ -11,5 +11,9 @@ COPY --from=Builder typst-x86_64-unknown-linux-musl/typst /usr/bin/typst

RUN dnf update -yq \
&& dnf install -yq \
just \
mozilla-fira-sans-fonts \
ibm-plex-serif-fonts
ibm-plex-serif-fonts \
fontawesome-6-brands-fonts \
fontawesome-6-free-fonts \
&& dnf clean all
11 changes: 11 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
set dotenv-load

build:
typst compile \
kadykov-cv.typ

build-private:
typst compile \
kadykov-cv.typ \
--input EMAIL='{{env_var("EMAIL")}}' \
--input PHONE='{{env_var("PHONE")}}'
Loading

0 comments on commit 36af241

Please sign in to comment.