Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alulsh/alulsh.github.io
Personal website for Alexandra L. Ulsh
https://github.com/alulsh/alulsh.github.io
github-pages personal-blog personal-website
Last synced: 4 days ago
JSON representation
Personal website for Alexandra L. Ulsh
- Host: GitHub
- URL: https://github.com/alulsh/alulsh.github.io
- Owner: alulsh
- License: mit
- Created: 2015-02-03T02:40:02.000Z (almost 10 years ago)
- Default Branch: gh-pages
- Last Pushed: 2023-01-31T03:49:32.000Z (almost 2 years ago)
- Last Synced: 2023-04-01T12:23:06.863Z (over 1 year ago)
- Topics: github-pages, personal-blog, personal-website
- Language: SCSS
- Homepage: https://www.alexandraulsh.com/
- Size: 10.7 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# alexandraulsh.com
https://www.alexandraulsh.com/
My personal website.
## Dependencies
This websites uses the same versions of Ruby (v2.7.1) and Jekyll (v3.9.0) as [GitHub Pages](https://pages.github.com/versions/).
Install rbenv with [homebrew](https://brew.sh/) and optionally set Ruby v2.7.1 as the default:
```sh
brew install rbenv
rbenv install 2.7.1
rbenv global 2.7.1
```Set up [rbenv in your shell](https://github.com/rbenv/rbenv#how-rbenv-hooks-into-your-shell):
```sh
echo 'eval "$(rbenv init -)"' >> ~/.zshrc
source ~/.zshrc
```Upgrade bundler to v2.2.8:
```sh
gem install bundler:2.2.8
```Install Jekyll v3.9.0:
```sh
gem install jekyll:3.9.0
```## Install locally
After installing dependencies, to install this website locally:
```sh
git clone [email protected]:alulsh/alulsh.github.io.git
cd alulsh.github.io
bundle install
```## Run locally
Run `jekyll serve --watch` then visit http://127.0.0.1:4000/ in a web browser.