Primeiro commit.

This commit is contained in:
Rafael Ribeiro 2021-11-18 01:00:02 -03:00
commit f13e739d0b
3 changed files with 16 additions and 0 deletions

8
Makefile Normal file
View File

@ -0,0 +1,8 @@
.PHONY: install
SHELL := /bin/bash
install:
@cp ${PWD}/gitconfig ${HOME}/.gitconfig
@mkdir -p ${HOME}/.bashrc.d
@cp -R ${PWD}/bashrc.d/* ${HOME}/.bashrc.d/

3
bashrc.d/jekyll.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
alias jekyll="docker run -v $(pwd):/srv/jekyll jekyll/jekyll:3.8 $*"
alias jekyll-serve="docker run -v $(pwd):/app -v $(pwd)/vendor/bundle:/usr/local/bundle -p 4000:4000 jekyll serve"

5
gitconfig Normal file
View File

@ -0,0 +1,5 @@
[user]
name = Rafael Ribeiro
email = ribeiro@sighup.email
[init]
defaultBranch = main