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
- Node 20+
- 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
- Remove the remote the origin
git remote remove origin
- Create a new empty git repo
To avoid merge conflicts customize the following files instead of creating during repo creation:
- README.md
- license
- .gitignore
- Add origin
git remote add origin <git repo url>
- Commit changes
git commit -m "chore: first commit"
- Push changes to the new repo
git push -u origin main