#react-ts-boiler
The goal: An easy template to spin up new front end projects, with the following base:
- TypeScript
- Catch as many errors as possible at compile vs runtime
- Scale to full teams of developers
- React + Redux
- Webpack
Create a new empty repo on github. Remember the name of it.
Locally, clone this repository as a mirror.
$ git clone --mirror https://github.com/redarrowlabs/react-ts-boiler
$ cd react-ts-boilerChange the origin to your new repo.
$ git remote set-url --push origin https://github.com/exampleuser/mirroredFetch from the new origin.
$ git fetch -p originBecause no changes have actually been made to these files, the next time you push, push as a mirror:
$ git push --mirrorFrom this point on, you can push normally and still recieve updates from react-ts-boiler.