Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 2 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 (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2024-04-08T20:15:25.000Z (9 months ago)
- Last Synced: 2024-05-01T09:49:31.879Z (8 months ago)
- Language: CSS
- Homepage: https://charlotte-ruby.github.io
- Size: 19.4 MB
- Stars: 1
- Watchers: 6
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# charlotte-ruby.github.io
Charlotte Ruby User Group Website
[![Ruby](https://github.com/charlotte-ruby/charlotte-ruby.github.io/actions/workflows/test.yml/badge.svg)](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