jamulussoftware / jamuluswebsite

This is the GitHub Pages repository for the Jamulus main website. For the jamulus application source code, please visit jamulussoftware/jamulus.
https://jamulus.io
GNU Lesser General Public License v2.1
15 stars 81 forks source link

Clarify how to run website locally/offline #896

Closed gilgongo closed 1 year ago

gilgongo commented 1 year ago

This clarifies how to run the website locally.

Does this need translation?

NO

ignotus666 commented 1 year ago

Changed base to next-release, as the fork seems to be based on that (otherwise the PR needs to be made from a branch based on release).

ann0see commented 1 year ago

Yes, this should go to release. You can checkout a new branch based on release (git checkout release; git pull; git checkout -b newBranchName; git cherry-pick (repeat this for every commit you want to put onto the new branch). Then git push & open a new PR or force push "HEAD" to the branch this PR comes from (probably a bit more dangerous).

Alternatively you could also use the rebase command (git rebase -i release and pick only the commits you need.)

The following is just if you’re confused by the editor (vi) which is opened if you type the git command: If vi pops up and you can’t type, enter inserts mode with "i", do your changes and exit by pressing esc and then :wq

See https://www.marquette.edu/mathematical-and-statistical-sciences/basic-vi-editor-commands.php

gilgongo commented 1 year ago

No problem, I'll just make another PR