https://github.com/harrystevens/homepage
My homepage.
https://github.com/harrystevens/homepage
Last synced: 3 months ago
JSON representation
My homepage.
- Host: GitHub
- URL: https://github.com/harrystevens/homepage
- Owner: HarryStevens
- Created: 2017-04-28T07:48:48.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2022-12-13T04:23:08.000Z (over 2 years ago)
- Last Synced: 2024-04-14T21:48:02.505Z (about 1 year ago)
- Language: HTML
- Size: 24.7 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This is the code to generate [my homepage](http://www.harryjstevens.com/).
## Setup
```bash
git clone [email protected]:HarryStevens/homepage.git
cd homepage
npm install
```## Build
```bash
npm run build
```This command creates the entire site. But it is made up of other commands, which you can use individually.
### Generate post list
```bash
node build/scrape_blocks.js
node build/scrape_medium.js
```### Build the site
```bash
node build/create_blog.js
node build/create_home.js
```## Open
```bash
python -m SimpleHTTPServer 1234
```
Open localhost:1234 in your browser.