This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # .gitconfig | |
| [includeIf "gitdir:~/codes/personal/"] | |
| path = ~/.gitconfig-personal | |
| [includeIf "gitdir:~/codes/work/"] | |
| path = ~/.gitconfig-work | |
| [include] | |
| path = ~/.gitconfig-extra | |
| # gitconfig-work | |
| [user] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| % less .zshenv | |
| ZDOTDIR="$HOME/.dotfiles/zsh" | |
| . "$ZDOTDIR/.zshenv" | |
| % less .zshenv | |
| export EDITOR=vim | |
| export AWS_DEFAULT_REGION=ap-southeast-2 | |
| export GPG_TTY="$TTY" | |
| .zshrc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Multi-stage Dockerfile for building many Java projects with Maven | |
| # Dynamically discovers all POMs and caches dependencies efficiently | |
| # Maven cache preparation stage - discovers and caches ALL dependencies | |
| FROM maven:3.9-eclipse-temurin-17 AS maven-cache-prep | |
| WORKDIR /workspace | |
| # Install additional tools | |
| RUN apt-get update && apt-get install -y git curl rsync findutils && rm -rf /var/lib/apt/lists/* |
OlderNewer