Skip to content

Commit

Permalink
Add .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinav-nath committed Nov 3, 2022
1 parent f8fea97 commit d0d308a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.DS_Store
4 changes: 2 additions & 2 deletions dev-setup/.functions
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ function up() {
function cheatsheet() { curl http://cht.sh/$1 }

# docker-compose up
function dCu() {
function dcu() {
if [ $# -gt 0 ]; then
docker-compose -f $1 up -d
else
Expand All @@ -79,7 +79,7 @@ function dCu() {
}

# docker-compose down
function dCd() {
function dcd() {
if [ $# -gt 0 ]; then
docker-compose -f $1 down
else
Expand Down

0 comments on commit d0d308a

Please sign in to comment.