https://github.com/phstc/phstc.github.com
Repository for my blog
https://github.com/phstc/phstc.github.com
Last synced: about 2 months ago
JSON representation
Repository for my blog
- Host: GitHub
- URL: https://github.com/phstc/phstc.github.com
- Owner: phstc
- License: other
- Created: 2012-09-08T15:59:15.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2023-12-28T17:26:54.000Z (over 2 years ago)
- Last Synced: 2025-01-27T08:45:24.137Z (over 1 year ago)
- Language: HTML
- Homepage: https://pablocantero.com
- Size: 3.49 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
Repository for my [blog](https://pablocantero.com).
## Notes to self
### Local server
For running it locally, you will need to install Jekyll dependencies:
```shell
gem install jekyll
gem install jekyll-redirect-from
gem install jekyll-paginate
```
Then
```shell
rake server
```
### New post
For creating new draft:
```shell
rake draft:new
What's the name for your next post?
```
When the post is ready:
```shell
rake draft:ready
What's the name for your next post?
Posts in _drafts:
1 - post name 1
2 - post name 2
What's the number of the draft to post?
```
## All options
```shell
rake -T
rake draft:new # Creating a new draft for post/entry
rake draft:ready # Copy draft to production post
rake server # Start jekyll in development mode
```