This file contains 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
version: "3.7" | |
services: | |
frontend: | |
build: ./PoGoTrades-Frontend | |
ports: | |
- "3000:3000" | |
volumes: | |
- ./PoGoTrades-Frontend:/frontend/ | |
- /frontend/node_modules/ |
This file contains 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
# GIT Aliases | |
alias gcl='git clone' | |
alias ga='git add' | |
alias grm='git rm' | |
alias gap='git add -p' | |
alias gall='git add -A' | |
alias gf='git fetch --all --prune' | |
alias gft='git fetch --all --prune --tags' | |
alias gfv='git fetch --all --prune --verbose' | |
alias gftv='git fetch --all --prune --tags --verbose' |