Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vickyrampin/personal-website
The code behind my sort-of professional site.
https://github.com/vickyrampin/personal-website
Last synced: 27 days ago
JSON representation
The code behind my sort-of professional site.
- Host: GitHub
- URL: https://github.com/vickyrampin/personal-website
- Owner: VickyRampin
- License: mit
- Created: 2016-05-11T16:34:01.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-03-18T22:17:28.000Z (almost 4 years ago)
- Last Synced: 2024-12-07T02:45:25.639Z (about 1 month ago)
- Language: JavaScript
- Homepage: https://vickysteeves.com/
- Size: 99.2 MB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![forthebadge](http://forthebadge.com/images/badges/60-percent-of-the-time-works-every-time.svg)](http://forthebadge.com)
[![forthebadge](http://forthebadge.com/images/badges/contains-cat-gifs.svg)](http://forthebadge.com)### About
My website, [vickysteeves.com](http://vickysteeves.com), upgraded from coding-by-hand (n00b) to [Nikola](https://getnikola.com/), a static site generator.### Building
This site relies on Python and [Nikola](https://getnikola.com/), a static site generator.I would recommend you use a virtualenv to build and view this website. This is a Python tool to create isolated Python environments. The HitchHiker's Guide to Python has a [great guide](http://docs.python-guide.org/en/latest/dev/virtualenvs/) on virtual environments that I used to learn how to use/interact with virtualenvs.
Here's how to make and activate a virtual environment:
# install the tool virtualenv
$ pip install virtualenv# create the Python 3 virtual environment
$ virtualenv -p python3 my-website# activate the virtual environment
$ source my-website/bin/activateNow, you can get started and install all of the dependecies of my website!
# install the dependencies
$ pip install Nikola['extras']# clone this repo
$ git clone [email protected]:VickySteeves/personal-website.git# change directory (cd) so you are in the right folder for the website
$ cd personal-website# build the website
$ nikola build# see the website
$ nikola serve -bYou should now be able to see and interact with my website locally!
### RSS Feed
Found here: [http://vickysteeves.com/rss.xml](http://vickysteeves.com/rss.xml)