Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vbfox/blog
My blog source
https://github.com/vbfox/blog
blog jekyll jekyll-blog
Last synced: 22 days ago
JSON representation
My blog source
- Host: GitHub
- URL: https://github.com/vbfox/blog
- Owner: vbfox
- Created: 2014-11-01T19:08:16.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2022-11-20T01:16:41.000Z (about 2 years ago)
- Last Synced: 2024-05-02T00:44:23.986Z (8 months ago)
- Topics: blog, jekyll, jekyll-blog
- Language: SCSS
- Homepage: https://blog.vbfox.net
- Size: 2.4 MB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# My blog
[![Build status](https://ci.appveyor.com/api/projects/status/f92nv0mkd85rxkjp/branch/master?svg=true)](https://ci.appveyor.com/project/vbfox/blog/branch/master)
[![CircleCI](https://circleci.com/gh/vbfox/blog/tree/master.svg?style=svg)](https://circleci.com/gh/vbfox/blog/tree/master)Uses [Jekyll](https://jekyllrb.com) to generate [blog.vbfox.net](https://blog.vbfox.net).
## Building locally
* Install ruby 2.5
* `gem install bundler`
* `bundle`
* `dev.cmd`## Building in Docker
Build and run (Will be accessible on [http://127.0.0.1:8080](http://127.0.0.1:8080))
```sh
docker build . -t vbfox/blog
docker run --name vbfox-blog -it --rm -p 127.0.0.1:8080:80 vbfox/blog
# Ctrl+C to kill the container# To build with future & drafts
docker build . --build-arg DRAFTS=yes --build-arg FUTURE=yes -t vbfox/blog:drafts
```# Uploading to the server
```sh
./build.cmd Upload
# Enter password for blog_upload
```