https://github.com/seiyakobayashi/seiyakobayashi.github.io
Personal website for blogging
https://github.com/seiyakobayashi/seiyakobayashi.github.io
blockchain cryptography ethereum web3
Last synced: 3 months ago
JSON representation
Personal website for blogging
- Host: GitHub
- URL: https://github.com/seiyakobayashi/seiyakobayashi.github.io
- Owner: SeiyaKobayashi
- License: mit
- Created: 2022-04-01T18:37:09.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-12-16T12:04:19.000Z (7 months ago)
- Last Synced: 2025-03-24T03:22:16.398Z (4 months ago)
- Topics: blockchain, cryptography, ethereum, web3
- Language: HTML
- Homepage: https://blog.seiya.work/
- Size: 2.5 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
## Overview
Repo for my personal [website](https://blog.seiya.work/).
## Local Development
#### Set up local environment
**Prerequisite**: the following should be installed on your local machine.
- `homebrew`
- homebrew packages
- `rbenv`
- `ruby-build````sh
# Ruby's version should be lower than '3.2.0' (as of Apr. 2024)
$ rbenv install 3.1.3
# You can also specify version locally (to avoid version conflicts)
$ rbenv global 3.1.3
# Install bundler
$ gem install bundler
# Install gems under 'vendor/bundle'
$ bundle install
```#### Run local server
Run the following command. Then access http://localhost:4000/
```sh
$ bundle exec jekyll s
```