Creating a repository template on GitHub is a very useful practice for standardizing the structure and settings of your projects. With this, you can define a set of files, folders, and settings that will be automatically applied to all new repositories created from your template.
This is especially useful when it comes to establishing quality standards and best development practices, such as code and commit linting, folder organization, etc. By defining these standards in your template, you ensure that all your projects have a minimum level of quality and organization, and make it easier to collaborate between different projects within your team.
The official GitHub documentation on repository templates can be found at the following link: Github - Template Repository.
This project was created with the goal of providing optimized configurations for Next.js 13, in order to facilitate the development of web applications. In addition, tools such as lint and commitlint have been implemented to help maintain more consistent and standardized code and commits, making the development process more organized and efficient.
To get started with the project, follow these steps:
npm install
.npm run dev
.Contributions are welcome! If you find a bug or have a feature request, please open an issue. If you would like to contribute code, please follow these steps:
git checkout -b my-new-feature
).git commit -am 'Add some feature'
).git push origin my-new-feature
).