https://github.com/purpleturtlecreative/notes.purpleturtlecreative.com
A collaborative and searchable alternative to GitHub Gists for sharing tips, tricks, and snippets.
https://github.com/purpleturtlecreative/notes.purpleturtlecreative.com
gh-pages jekyll-site personal-website
Last synced: 3 months ago
JSON representation
A collaborative and searchable alternative to GitHub Gists for sharing tips, tricks, and snippets.
- Host: GitHub
- URL: https://github.com/purpleturtlecreative/notes.purpleturtlecreative.com
- Owner: PurpleTurtleCreative
- Created: 2021-07-30T02:07:55.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-06-25T01:46:00.000Z (almost 2 years ago)
- Last Synced: 2024-12-22T18:44:40.193Z (5 months ago)
- Topics: gh-pages, jekyll-site, personal-website
- Language: SCSS
- Homepage: https://notes.purpleturtlecreative.com/
- Size: 96.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Developer Notebook
This GitHub Pages-powered site was created as an alternative to GitHub Gists.
This site is much more user-friendly, searchable, and customizable than the GitHub Gists interface. It's also easier and more natural to collaborate on a repository by adding and revoking collaborator access.
## Local Development
To make edits to this site, you'll need to use [**Ruby 2.7.X**](https://formulae.brew.sh/formula/[email protected]) until [Issue #752](https://github.com/github/pages-gem/issues/752) is resolved in the `github-pages` gem.
I'm on Mac OSX, using [Homebrew](https://brew.sh/). Add the appropriate version of Ruby to your path like such:
```bash
export PATH="/usr/local/opt/[email protected]/bin:/usr/local/lib/ruby/gems/[email protected]/bin:$PATH"
```You'll also need [**Bundler**](https://bundler.io/) by running `gem install bundler`.
Use the following commands to build or serve the site. Use `--verbose` if you're having issues or want more detailed output.
```bash
# Install gem dependencies
bundle
# Build only, output to /_site
bundle exec jekyll build
# Build and watch files, served at http://127.0.0.1:4000/
bundle exec jekyll serve
```