Skip to content

Latest commit

 

History

History
37 lines (33 loc) · 841 Bytes

readme.md

File metadata and controls

37 lines (33 loc) · 841 Bytes

Hey there! You found my portfolio!

Thanks for checking it out. Here's how you can download and build it:

$ git clone https://github.com/fanny-jiang/portfolio.git

Install and Run Hugo

  1. Install Hugo
$ brew install hugo
$ hugo version    # to verify your new install
  1. Run server
$ hugo server    # auto-compiles as you work

Edit Project

  • Template lives in /layouts/index.html
  • Config vars and content go in /config.toml
  • Static files go in /static
  • Themes live in /themes # duh
  • Meta info stuff go in /content
  • Compiled project ends up in /public

Deployment

  1. Install Firebase
$ npm install -g firebase-tools
  1. Login to Firebase Google Account
$ firebase login
  1. Deploy to Firebase
$ hugo && firebase deploy   # yay