Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/creek-service/creek-service.github.io
Docs site
https://github.com/creek-service/creek-service.github.io
Last synced: 4 days ago
JSON representation
Docs site
- Host: GitHub
- URL: https://github.com/creek-service/creek-service.github.io
- Owner: creek-service
- License: mit
- Created: 2022-10-17T21:00:21.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-01T09:45:04.000Z (13 days ago)
- Last Synced: 2024-11-01T10:26:37.186Z (13 days ago)
- Language: Ruby
- Homepage: https://www.creekservice.org
- Size: 63.2 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Creek's GitHub pages site.
This GitHub repo has the source code for the root [Creek Service](https://www.creekservice.org) site.
The root is a folk of [mmistakes/minimal-mistakes](https://github.com/mmistakes/minimal-mistakes):
an awesome Jekyll theme, that's been modified to create a theme for the Creek site.The `docs` folder contains the root [www.creekservice.org](https://www.creekservice.org) site.
## Setup
If you want to hack about with the site or add content, then follow these instructions to be able to run locally.
### Prerequisites
1. Install Git, obviously.
2. [Install Jekyll](https://jekyllrb.com/docs/installation)
3. Install [Builder](https://bundler.io/) by running `gem install bundler`.### Installing
#### 1. Clone the repository
```shell
git clone [email protected]:creek-service/creek-service.github.io.git
cd creek-service.github.io
```
#### 2. Install the gems```shell
bundle install
```
This will install Jekyll itself and any other gems that are needed.#### 3. Update
Occasionally update gems
```shell
git checkout main
git pull
bundle update
git checkout -b gems-update
git add .
git commit -m "updating gems"
git push --set-upstream origin gems-update
```#### 4. Run the local server
```shell
bundle exec jekyll serve --livereload
```This will launch a web server so that you can work on the site locally.
Check it out on [http://localhost:4000/creek](http://localhost:4000/creek).