Skip to content

vtcodecamp/2017.vtcodecamp.org

Repository files navigation

Netlify Status

VT Code Camp 2017 Website

Built with the 11ty/Eleventy & netlify

Dev Environment Setup

  • Install Node.js & NPM
  • Run npm install in the project directory to install local dependencies
  • Run npm run serve to run a local dev environment
  • Access dev copy of the site at localhost:8080

NPM Scripts

Explanation of the available npm scripts for this project

build

npm run build

This runs the command npx eleventy to build the site into the docs directory. The docs directory is used for deployment to github pages.

serve

npm run serve

This runs the command npx eleventy --serve which builds the site, then continues to watch and rebuild the site when file changes are detected. It also runs a local webserver and makes the site available at localhost:8080

Resources