Skip to content

Payadel/README

Repository files navigation

Payadel README template

A template for a convenient and standard start of projects.

  • Documents like readme, issue/pull-request template, contributing, changelog, etc.
  • GitHub actions like auto-generate-changelog, release, labels, etc.
  • Git hooks and evaluators like pre-commit, commitlint, etc.

Simple Usage

Run this script:

wget https://github.com/payadel/readme/releases/latest/download/release.zip; wait; unzip release.zip; wait; rm release.zip

Usage

  1. Preparation

Make sure you are on an unprotected branch (eg dev branch).

In this template, the main branch (or master) is protected by default. This means that there is no permission to commit, merge or push in these branches. Of course, you can change the rules whenever you want.

  1. Download Template

Note: we use wget tool to download the template file. You can install wget or use other tools (including direct download).

For download the latest version:

wget https://github.com/payadel/readme/releases/latest/download/release.zip

Or specific version like v0.1.3:

https://github.com/Payadel/README/releases/download/v0.1.3/release.zip
  1. Unzip Template
unzip release.zip; wait; rm release.zip
  1. Run requirements script

This script makes sure that tools like pre-commit and npm packages are installed.

chmod +x requirements.py && ./requirements.py

Or use python:

python3 requirements.py
  1. (Optional) Commit changes

In the next step, we are going to change the files. So it is better to commit the files.

git commit -am "Your message! For example: chore: add Payadel readme template"
  1. Update files

Look at the added files, especially the document files, and customize according to your project.

For example:

  • CHANGELOG.md: if you want use changelog GitHub action, it is better to remove this file. Because changelog action does not rewrite this file, adds new data to the top of the file.
  • If you want to use git hooks: tell the programmers and document that after cloning the project, everyone must run the requirements file.
  1. Suggested actions
  • If you use changelog GitHub action: this action creates pull request, so needs permission to create PR. Please see this link to give access.
  • Using git hooks to protect the main branches is good but not enough. The developer can disable the hooks or may forget to enable the hooks after cloning the project. Therefore, it is better to config the settings on the server side (such as GitHub, etc). For example, you can see this link for GitHub settings.
  • For more convenience, scripts are defined in the package.json file. For example, GitHub's command-line tool (gh) is one of them. Using this tool is optional, but it can increase your comfort. To use this tool, first make sure it is installed. Secondly, log in to your account to have the necessary access. for more information: gh --help

Files

Issues

  • Bug report template

  • Feature request template

  • Codebase improvement template

  • Support Question template

Github workflows

  • CodeQL: Actions for running CodeQL analysis to find security vulnerabilities

  • Sync labels: By using this workflow, you can sync current labels with labels configured in a YAML manifest.

  • Lock: Lock closed issues and PRs

  • PR Labels

Other:

  • labels.yml: label colors
  • Pull request template
  • Code of conduct
  • Contributing
  • Security
  • Changelog
  • License (GPLv3)
  • Readme

Support

Reach out to the maintainer at one of the following places:

Contributing

First off, thanks for taking the time to contribute! Contributions are what make the free/open-source community such an amazing place to learn, inspire, and create. Any contributions you make will benefit everybody else and are greatly appreciated.

Please read our contribution guidelines, and thank you for being involved!

License

This project is licensed under the GPLv3.

See LICENSE for more information.

Related

Here are some related projects: