https://github.com/dirvine/david-irvine.com
Personal blog by David Irvine - Jekyll site hosted on Firebase
https://github.com/dirvine/david-irvine.com
Last synced: 3 months ago
JSON representation
Personal blog by David Irvine - Jekyll site hosted on Firebase
- Host: GitHub
- URL: https://github.com/dirvine/david-irvine.com
- Owner: dirvine
- Created: 2026-02-10T15:33:19.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-02-18T22:51:58.000Z (4 months ago)
- Last Synced: 2026-02-19T04:34:16.530Z (4 months ago)
- Language: CSS
- Size: 441 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Metaquestions - Jekyll Site
Personal blog by David Irvine, migrated from WordPress to Jekyll.
## Local Development
### Prerequisites
- Ruby (2.7+)
- Bundler
### Setup
```bash
bundle install
```
### Run locally
```bash
bundle exec jekyll serve
```
Visit `http://localhost:4000`
### Build for production
```bash
bundle exec jekyll build
```
## Firebase Deployment
### Prerequisites
1. Install Firebase CLI:
```bash
npm install -g firebase-tools
```
2. Login to Firebase:
```bash
firebase login
```
3. Create a Firebase project at https://console.firebase.google.com
### Deploy
```bash
# Build the Jekyll site
bundle exec jekyll build
# Deploy to Firebase
firebase deploy
```
## Structure
- `_posts/` - Blog posts in Markdown
- `_layouts/` - Page templates
- `_includes/` - Reusable components
- `assets/` - CSS, images, etc.
- `_config.yml` - Site configuration