https://github.com/upstatement/lunch-and-learn
https://github.com/upstatement/lunch-and-learn
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/upstatement/lunch-and-learn
- Owner: Upstatement
- Created: 2020-01-10T17:18:29.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-07-07T23:04:43.000Z (over 2 years ago)
- Last Synced: 2025-01-18T17:48:32.379Z (about 1 year ago)
- Language: HTML
- Size: 355 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Your Next Great Prototype  
> Your next great prototype description
## ✨ Install
```sh
# Install Node & NPM with [NVM](https://github.com/nvm-sh/nvm)
nvm install
# Install project dependencies
npm install
```
## 👩💻 Usage
### Development
```sh
# 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
```sh
# 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](https://www.netlify.com/).
You can deploy your work to Netlify with their [CLI tool](https://github.com/netlify/cli).
```
npm install netlify-cli -g
netlify init
netlify deploy
```
## 📝 License
Copyright © 2020 Upstatement, LLC
---
A [Puppy](https://github.com/Upstatement/puppy-starter/wiki) 🐶 powered project