Skip to content

Latest commit

 

History

History
63 lines (41 loc) · 1.17 KB

README.md

File metadata and controls

63 lines (41 loc) · 1.17 KB

Your Next Great Prototype Prerequisite Prerequisite

Your next great prototype description

✨ Install

# Install Node & NPM with [NVM](https://github.com/nvm-sh/nvm)
nvm install

# Install project dependencies
npm install

👩‍💻 Usage

Development

# Start a local dev server
npm start

# Check for JS/SCSS style violations prior to commit
npm run lint

# Fix the fixable linter violations
npm run lint:fix

# Format code with Prettier
npm run format

Production

# Build for production
npm run build

# Serve locally using `serve`
npx serve dist

Deployment

The output of npm run build is a static site. You can drop the resulting dist directory on any web server.

An excellent choice is Netlify.

You can deploy your work to Netlify with their CLI tool.

npm install netlify-cli -g
netlify init
netlify deploy

📝 License

Copyright © 2020 Upstatement, LLC


A Puppy 🐶 powered project