https://github.com/charlotte-ruby/charlotte-ruby.github.io
Charlotte Ruby User Group Website
https://github.com/charlotte-ruby/charlotte-ruby.github.io
Last synced: 3 months ago
JSON representation
Charlotte Ruby User Group Website
- Host: GitHub
- URL: https://github.com/charlotte-ruby/charlotte-ruby.github.io
- Owner: charlotte-ruby
- Created: 2012-03-05T21:40:59.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2025-03-21T23:47:02.000Z (4 months ago)
- Last Synced: 2025-03-22T00:26:11.263Z (4 months ago)
- Language: CSS
- Homepage: https://charlotte-ruby.github.io
- Size: 19.5 MB
- Stars: 2
- Watchers: 5
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# charlotte-ruby.github.io
Charlotte Ruby User Group Website
[](https://github.com/charlotte-ruby/charlotte-ruby.github.io/actions/workflows/test.yml)
## Getting Started
```sh
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](http://localhost:4000)## Adding a New Page or Post
```sh
touch _posts/$(date +"%Y-%m-%d")_name_of_my_post.md
git add _posts/*
git commit -m "added new post"
bundle exec jekyll s
```## Contributing
```sh
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
```## Deploying changes
Deployments happen automatically via [Github Actions](https://github.com/charlotte-ruby/charlotte-ruby.github.io/deployments) on the master branch