-
Notifications
You must be signed in to change notification settings - Fork 0
Cleanup docs #369
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
SilviaAmAm
wants to merge
6
commits into
main
Choose a base branch
from
feature/cleanup-docs
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Cleanup docs #369
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
d15328b
:fire: chore: Remove setting python path after improving sphinx conf
207d487
:whale: chore: Improve docker compose to reflect needed env vars
694b50c
:memo: chore: Improve docs of env vars
6a8e4b5
:memo: chore: Document frontend env vars
9bcc3cd
:memo: feat: Document release flow
a046d62
:rewind: fix: Revert CI changes breaking docs build
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| .. _developers_release: | ||
|
|
||
| ============ | ||
| Release flow | ||
| ============ | ||
|
|
||
| #. Checkout a branch ``release/X.X.X`` (with the new version number) | ||
| #. In the root folder, use ``bump-my-version show-bump`` to show the possibilities, for example: | ||
|
|
||
| .. code:: bash | ||
|
|
||
| bump-my-version show-bump | ||
|
|
||
| 0.1.0 ── bump ─┬─ major ─ 1.0.0 | ||
| ├─ minor ─ 0.2.0 | ||
| ├─ patch ─ 0.1.1 | ||
| ├─ pre_l ─ invalid: The part has already the maximum value among ['', 'alpha', 'beta', 'rc', 'final'] and cannot be bumped. | ||
| ╰─ pre_n ─ 0.1.0-final.1 | ||
|
|
||
| #. Bump the version. For example ``bump-my-version bump major``. | ||
| #. In the ``frontend/`` folder, run ``npm install`` to also update the ``package-lock.json`` file after the ``package.json`` has been bumped. | ||
| #. In the ``backend/`` folder, run ``./bin/make_translations.sh`` and check if any translations need changing. | ||
| #. In the ``backend/`` folder, run ``./bin/update_oas.sh`` to update the OAS. | ||
| #. Update the ``CHANGELOG.md`` file. | ||
| #. Commit the changes and push the branch. | ||
| #. Once the branch is approved, merge it into main. | ||
| #. Create a tag with ``git tag -a 1.0.0 -m ":bookmark: Release 1.0.0"``. | ||
| #. Push the tag with ``git push origin 1.0.0``. | ||
| #. Once the new image has been pushed to Dockerhub, celebrate! 🎉 |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.