Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/thombruce/repo

A template repository for good repository design
https://github.com/thombruce/repo

Last synced: 1 day ago
JSON representation

A template repository for good repository design

Awesome Lists containing this project

README

        

Repo

Repo | Helvellyn | Credible

Become a Patron

Version
GitHub Workflow Status
GitHub issues

License
Contributing
Discord

Changelog
Contributor Covenant

A template repository for good repository design.

## Table of Contents

1. [Files and Folders](#files-and-folders)
2. [Community Profile](#community-profile)

## Files and Folders


.
├── .github
├── CHANGELOG.md
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE
├── package.json
└── README.md

### .github


.
└── .github

This hidden folder contains GitHub specific files. [Read more](.github/.GITHUB.md#github).

### CHANGELOG.md


.
└── CHANGELOG.md

Based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) by [Olivier Lacan](https://github.com/olivierlacan).

### CODE_OF_CONDUCT.md


.
└── CODE_OF_CONDUCT.md

### CONTRIBUTING.md


.
└── CONTRIBUTING.md

### LICENSE


.
└── LICENSE

The most essential file to let others know that a project is open source and how they are allowed to use it. This repo, for instance, uses the MIT license; you can use the contents privately and commercially and modify them for your own needs.

### package.json


.
└── package.json

The package.json file is used by npm packages to list dependencies. It isn't required, but can be handy to have even if you're not creating an npm package. At minimum, it lists the name and version of the package. It can also contain many other fields, used by different technologies.

### README.md


.
└── README.md

1. Title
2. Related Repositories
3. Quick Deploy Button (Heroky/Netlify/...) if applicable
4. Dev Badges (Version/Build/Coverage/Issues)
5. Community Badges (License/Code of Conduct/Contributing Guide/Discord)
6. Introduction
7. Table of Contents

## Community Profile