An unopinionated, clone-able starter repository for Motorcycle.ts configured with webpack.
## Get ##
# Using degit https://github.com/Rich-Harris/degit
# In the folder you'd like to work in
degit motorcyclets/starter
# or git
# replace APP_NAME with the folder name you'd like to use
git clone https://github.com/motorcyclets/starter APP_NAME && cd APP_NAME && rm -rf .git
## Setup git ##
# initialize git
git init
# setup git remotes
git remote add origin git@github.com:USERNAME/REPO_NAME
## Install ##
# with yarn
yarn --pure-lockfile
# with NPM
npm install
## Development Server ##
# with yarn
yarn start
# with NPM
npm start
- Develop!