SvelteQuickstart/README.md
Thomas Cole fa93a220ce Redo of commits.
Git config was not set correctly.
2021-03-24 10:13:20 -04:00

692 B

SvelteQuickstart

A quickstart for building material web apps with Svelte.

Getting Started

Before you begin make sure Node.js is installed.

  1. Setup using degit:
npx degit thomaspcole/sveltequickstart#main MyApp
cd MyApp/
  1. Clone this project and change the git origin.
git clone https://github.com/thomaspcole/SvelteQuickstart.git
cd SvelteQuickstart
git remote set-url origin https://github.com/YOURUSERNAME/YOURSVELTEAPP.git
  1. Download this repository and copy+paste. :)

Setup

#Install node modules
npm install

#Run Svelte app
npm run dev

#Build Svelte app
npm run build