# Create project folder
mkdir app
# Go to the project root
cd app
# Clone the repository (stable branch)
git clone -b master https://github.com/lnked/react-redux-typescript-starter.git .
# OR download the latest release at: https://github.com/lnked/react-redux-typescript-starter/releases/latestOR
git init
git remote add origin git@github.com:lnked/react-redux-typescript-starter.git
git fetch origin
git pull origin master# Install
yarn
# or
npm i# Start a development server
yarn start
# Build for production
yarn build
# Build for anayze
yarn analyze
# Lint
yarn lint
# Lint fix
yarn lint:fix