https://github.com/zequez/zequez.github.io
Repository of my old Jekyll blog. Redirects to https://ezequiel.hoja.ar now
https://github.com/zequez/zequez.github.io
Last synced: 4 months ago
JSON representation
Repository of my old Jekyll blog. Redirects to https://ezequiel.hoja.ar now
- Host: GitHub
- URL: https://github.com/zequez/zequez.github.io
- Owner: Zequez
- Created: 2014-03-22T18:19:03.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2024-05-26T21:35:24.000Z (about 2 years ago)
- Last Synced: 2025-10-26T23:23:44.247Z (7 months ago)
- Language: HTML
- Homepage: http://zequez.github.io/
- Size: 28.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## What is this?
This is the source of Zequez.com, powered by [Github pages](https://pages.github.com/)
and [Middleman](https://middlemanapp.com/).
## This doesn't look like a Middleman project? Where is the source?
That's correct, this is the `master` branch, Github processes this repository with
Jekyll and hosts it as a static website. This is the build directory created by Middleman, you
can see the source on the `source` branch.
## How is the build workflow?
I copied the `.git` folder into the `build` folder, then I switched the root
of the project to the `source` branch, and the `build` folder to the `master` branch.
Then when I want to commit a change in the source I commit from the root of the project
and when I want to commit a change in the build, I commit from the build folder.
So basically do the following:
```bash
git clone https://github.com/Zequez/zequez.github.io
cd zequez.github.io
mkdir build
cp -R .git build
checkout source
cd build
checkout master
```
## Development and publishing scripts
To mount the project for development or previewing something you're writing,
use:
```bash
./server.sh
```
If you want to preview the static server of the build directory to see that everything
is alright (it should be):
```bash
./static_server.sh
```
And after you're done and want to commit your changes to Github:
```bash
./publish.sh
```
Edit: Thank you, me from the past for writing these instructions and scripts.