Charlotte Ruby User Group Website
git clone [email protected]:charlotte-ruby/charlotte-ruby.github.io.git
cd charlotte-ruby.github.io
git checkout master
bundle
bundle exec jekyll s -l
At this point you should be able to see preview the site at http://localhost:4000
touch _posts/$(date +"%Y-%m-%d")_name_of_my_post.md
git add _posts/*
git commit -m "added new post"
bundle exec jekyll s
git checkout -b my-new-branch
git add new-stuff
git commit -m "I added new stuff"
git push -u origin my-new-branch
gh pr
Deployments happen automatically via Github Actions on the master branch