-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: tison <[email protected]>
- Loading branch information
Showing
8 changed files
with
9,069 additions
and
6,546 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,26 +4,31 @@ This project keeps all sources used for building the Apache Curator official web | |
|
||
## Prerequisite | ||
|
||
The Apache Curator website is powered by [Docusaurus 2](https://docusaurus.io/) and is built with Node 19 and Yarn 3. Check the [deployment workflow](.github/workflows/deploy.yml) for concrete requirements and instructions. | ||
The Apache Curator website is powered by [Docusaurus 2](https://docusaurus.io/) and is built with Node 19 and the latest pnpm. Check the [deployment workflow](.github/workflows/deploy.yml) for concrete requirements and instructions. | ||
|
||
## Installation | ||
|
||
```shell | ||
yarn | ||
pnpm install | ||
``` | ||
|
||
## Local Development | ||
|
||
```shell | ||
yarn start | ||
pnpm start | ||
``` | ||
|
||
This command starts a local development server and opens a browser window. Most changes are reflected live without having to restart the server. | ||
|
||
## Build | ||
|
||
```shell | ||
yarn build | ||
pnpm build | ||
``` | ||
|
||
This command generates static content into the `build` directory and can be served using any static content hosting service. | ||
|
||
## Contact information | ||
|
||
* Submit [an issue](https://github.com/apache/curator/issues/new) on the [main apache/curator repo](http://github.com/apache/curator) | ||
* Subscribe to the [email protected] mailing list and start a discussion. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ You can: | |
## Mailing list | ||
|
||
| Name | Desc | Subscribe | Unsubscribe | Post | Archive | | ||
|----------------------------|---------------------------------|----------------------------------------------------------|--------------------------------------------------------------|----------------------------------------|--------------------------------------------------------------------------| | ||
| -------------------------- | ------------------------------- | -------------------------------------------------------- | ------------------------------------------------------------ | -------------------------------------- | ------------------------------------------------------------------------ | | ||
| [email protected] | Usage issues and questions | [Subscribe](mailto:[email protected]) | [Unsubscribe](mailto:[email protected]) | [Post](mailto:[email protected]) | [Archive](https://lists.apache.org/[email protected]) | | ||
| [email protected] | Development related discussions | [Subscribe](mailto:[email protected]) | [Unsubscribe](mailto:[email protected]) | [Post](mailto:[email protected]) | [Archive](https://lists.apache.org/[email protected]) | | ||
| [email protected] | All commits to our repositories | [Subscribe](mailto:[email protected]) | [Unsubscribe](mailto:[email protected]) | Read only list | [Archive](https://lists.apache.org/[email protected]) | | ||
|
@@ -42,9 +42,7 @@ If you email us with a code snippet, make sure that: | |
|
||
## Issue tracker | ||
|
||
We use JIRA to track all code related issues: https://issues.apache.org/jira/browse/CURATOR | ||
|
||
You must have a [JIRA account](https://selfserve.apache.org/jira-account.html) in order to log cases and issues. | ||
We use GitHub Issues to track all code related issues: https://github.com/apache/curator/issues | ||
|
||
### Bug reports | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -111,7 +111,7 @@ Curator loosely uses [GitHub Flow](http://scottchacon.com/2011/08/31/github-flow | |
|
||
* Anything in the master branch is deployable | ||
* The upcoming release is always "master" | ||
* To work on something new, create a descriptively named branch off of the upcoming release - usually the ID of the Jira issue (e.g. CURATOR-16) | ||
* To work on something new, create a descriptively named branch off of the upcoming release - usually the ID of the GitHub issue (e.g. CURATOR-16) | ||
* Commit to that branch locally and regularly push your work to the same named branch on the server | ||
* When you need feedback or help, or you think the branch is ready for merging, send an email on [email protected] and ask for the branch to be reviewed | ||
* After someone else has reviewed and signed off on the feature, merge it into "master" | ||
|
@@ -148,7 +148,7 @@ Make sure you choose an appropriate version for each release. The Maven build wi | |
|
||
Curator's source is mirrored on GitHub at: https://github.com/apache/curator. Non-committers are [asked to fork this repository and submit pull requests](submitting-pull-requests.md) (PR) for changes. When a PR is received, a Curator committer can test and possibly merge it by: | ||
|
||
* Create a branch for the PR: `git checkout -b <branch name>` - the branch name is usually the JIRA ID of the issue | ||
* Create a branch for the PR: `git checkout -b <branch name>` - the branch name is usually the ID of the GitHub issue | ||
* Pull the changes from the PR: `git pull https://github.com/<users-name>/curator.git <branch>` (or you can use `gh pr checkout <pr-number>` with [GitHub CLI](https://cli.github.com/)). | ||
* Test, updated, etc. the change. Periodically push the change to the main repo. For the initial push: `git push -u origin <branch name>` | ||
* If the change is accepted, merge it into the master branch and push the master branch. This will automatically close the GitHub PR. NOTE: Please use `git merge --squash` as this makes it easier to read the history and do cherry-pick. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.