nginx / njs

A subset of JavaScript language to use in nginx
http://nginx.org/en/docs/njs/
BSD 2-Clause "Simplified" License
841 stars 116 forks source link

Update readme, add .md extension to readme #724

Closed mtbChef closed 1 month ago

mtbChef commented 1 month ago

Proposed changes

New README file for the repo/project, including new graphical banner.

Checklist

Before creating a PR, run through this checklist and mark each as complete:

xeioex commented 1 month ago

Hi @mtbChef,

please squash the commits in a single one. (Keep a clean, concise and meaningful git commit history on your branch, rebasing locally and squashing before submitting a PR)

For example, while working on the feature you have 3 commit, but you plan to squash them into the first one. And the top 2 commits are small fixes related to the initial commit. Do the following git rebase -i HEAD~3 In the interactive mode replace

pick 4ed2a1b Main commit
pick 7ac9a67 Commit message #2
pick e3a1b35 Commit message #3

with

pick 4ed2a1b Main commit
squash 7ac9a67 Commit message #2
squash e3a1b35 Commit message #3

After squashing, Git will open the editor again to combine the commit messages. You can edit this to reflect the new squashed commit's message.

With a new commit history, force-push the changes to your repo/branch: git push origin update-readme -f. After the force push this PR will be updated automatically.