Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/manuelmauro/blog
https://github.com/manuelmauro/blog
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/manuelmauro/blog
- Owner: manuelmauro
- Created: 2021-03-06T18:54:45.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-04-05T16:33:10.000Z (over 3 years ago)
- Last Synced: 2024-10-30T06:25:03.015Z (about 2 months ago)
- Language: SCSS
- Size: 2.06 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# My Personal Blog
You can find my personal blog [here](https://manuelmauro.github.io/blog/).
## Install Dependencies
Install Ruby and other prerequisites:
```bash
sudo apt-get install ruby-full build-essential zlib1g-dev
```Avoid installing RubyGems packages (called gems) as the root user. Instead, set up a gem installation
directory for your user account. The following commands will add environment variables to your
~/.bashrc file to configure the gem installation path:```bash
echo '# Install Ruby Gems to ~/gems' >> ~/.bashrc
echo 'export GEM_HOME="$HOME/gems"' >> ~/.bashrc
echo 'export PATH="$HOME/gems/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc
```Finally, install Jekyll and Bundler:
```bash
gem install jekyll bundler
```That’s it! You’re ready to start using Jekyll.
## Build
Build the site and make it available on a local server.
```bash
bundle exec jekyll serve
```Browse to `http://localhost:4000`