Skip to content

Commit

Permalink
add project paper
Browse files Browse the repository at this point in the history
  • Loading branch information
phierhager committed Nov 29, 2024
1 parent 2c0d9dc commit b37fd03
Show file tree
Hide file tree
Showing 28 changed files with 2,149 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Use the specified base image
FROM registry.gitlab.com/islandoftex/images/texlive:latest

# Install additional packages if needed
RUN apt-get update && apt-get install -y \
openssh-client \
git \
&& rm -rf /var/lib/apt/lists/*
15 changes: 15 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"name": "TexLive DevContainer",
"dockerFile": "Dockerfile",
"customizations": {
"vscode": {
"extensions": [
"ms-python.python", "james-yu.latex-workshop",
"github.copilot", // GitHub Copilot
"github.copilot-chat" // GitHub Copilot Chat
]
}
},
"postCreateCommand": "apt-get update && apt-get install -y git",
"remoteUser": "root"
}
14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# ignore all files of latex

*.aux
*.bbl
*.blg
*.log
*.out
*.toc
*.synctex.gz
*.fdb_latexmk
*.fls
*.gz
*.dvi
*.xdv
Loading

0 comments on commit b37fd03

Please sign in to comment.