Skip to content

Latest commit

 

History

History
51 lines (33 loc) · 836 Bytes

README.md

File metadata and controls

51 lines (33 loc) · 836 Bytes

Bootstrap

A TS Bootstrap BoilerPlate

This project was configured to be used in vscode, feel free to open a PR with custom settings for any IDE

Dependencies

  • Node 20+

How to use this repo

  1. Clone this repo with your new repo folder name
git clone https://github.com/saulonunesdev/bootstrap FOLDERNAME
# or
git clone https://github.com/saulonunesdev/bootstrap.git FOLDERNAME
  1. Remove the remote the origin
git remote remove origin
  1. Create a new empty git repo

To avoid merge conflicts customize the following files instead of creating during repo creation:

  • README.md
  • license
  • .gitignore
  1. Add origin
git remote add origin <git repo url>
  1. Commit changes
git commit -m "chore: first commit"
  1. Push changes to the new repo
git push -u origin main