-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- minor typos fixed - code highlighting added for better readability. - `.md` warnings fixed
- Loading branch information
1 parent
2697755
commit 03ca0fe
Showing
8 changed files
with
26 additions
and
29 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ Using the cookiecutters | |
|
||
1. One Time Setup | ||
================= | ||
.. code-block:: | ||
.. code-block:: bash | ||
# Clone the repository | ||
git clone [email protected]:openedx/edx-cookiecutters.git | ||
|
@@ -40,7 +40,7 @@ Using the cookiecutters | |
|
||
These instructions assume you have cloned this repository and are currently in its head dir. You will need a virtualenv for running the cookiecutter. You can discard it once the cookiecutter has made your new repo. | ||
|
||
Commands:: | ||
.. code-block:: bash | ||
$ make requirements # from inside edx-cookiecutter repo | ||
# Replace <OUTPUT-DIRECTORY> with the base directory; your new directory will go inside. | ||
|
@@ -50,24 +50,26 @@ Commands:: | |
3. TODOs after running cookiecutter | ||
=================================== | ||
|
||
- Modify project README | ||
- Modify the "requirements upgrade workflow" at ".github/workflows/upgrade-python-requirements.yml" and add "team_reviewers" and the "email_address" of the team/person | ||
- Modify project docs/decisions/0001-purpose-of-this-repo.rst ADR | ||
- Commit and push to GitHub | ||
- On GitHub, update repo's "About" description | ||
- Modify project ``README``. | ||
- Modify the ``requirements upgrade workflow`` at ``.github/workflows/upgrade-python-requirements.yml`` and add ``team_reviewers`` and the ``email_address`` of the team/person. | ||
- Modify project ``docs/decisions/0001-purpose-of-this-repo.rst`` ADR. | ||
- Commit and push to GitHub. | ||
- On GitHub, update repo's ``About`` description. | ||
|
||
Updating cookiecutters | ||
********************** | ||
|
||
If you find anything that is outdated in the cookiecutters in this repository, please create a PR with updates. | ||
|
||
|
||
.. Note:: Some of the cookiecutters in this repository use the layered cookiecutter approach. If you are modifying these, please see "Local Debugging of the layered cookiecutters" section below. | ||
.. Note:: | ||
|
||
Some of the cookiecutters in this repository use the layered cookiecutter approach. If you are modifying these, please see "Local Debugging of the layered cookiecutters" section below. | ||
|
||
|
||
Directions for contributing to this repository | ||
============================================== | ||
.. code-block:: | ||
.. code-block:: bash | ||
# Clone the repository | ||
git clone [email protected]:openedx/edx-cookiecutters.git | ||
|
@@ -151,7 +153,7 @@ Contributions are very welcome. Tests can be run with `tox`_. Please ensure the | |
License | ||
======= | ||
|
||
The code in this repository is licensed under the Apache Software License 2.0 unless | ||
The code in this repository is licensed under the ``Apache Software License 2.0`` unless | ||
otherwise noted. | ||
|
||
Please see ``LICENSE.txt`` for details. | ||
|
1 change: 1 addition & 0 deletions
1
...iecutter-django-app/{{cookiecutter.repo_name}}/.github/PULL_REQUEST_TEMPLATE.md
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
3 changes: 3 additions & 0 deletions
3
...iecutter-django-ida/{{cookiecutter.repo_name}}/.github/PULL_REQUEST_TEMPLATE.md
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 |
---|---|---|
@@ -1,11 +1,14 @@ | ||
|
||
**Merge checklist:** | ||
|
||
Check off if complete *or* not applicable: | ||
|
||
- [ ] Documentation updated (not only docstrings) | ||
- [ ] Fixup commits are squashed away | ||
- [ ] Unit tests added/updated | ||
- [ ] Manual testing instructions provided | ||
- [ ] Noted any: Concerns, dependencies, migration issues, deadlines, tickets | ||
|
||
**Post-merge:** | ||
|
||
- [ ] [Backported](https://openedx.atlassian.net/wiki/spaces/COMM/pages/2065367719/Making+a+pull+request+for+a+named+release) to latest and next named releases |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,18 +9,9 @@ | |
"author_email": "[email protected]", | ||
"open_source_license": ["AGPL 3.0", "Apache Software License 2.0", "Not open source"], | ||
"setup_py_keyword_args": "None", | ||
"setup_py_loading_pkg_data": [ | ||
"no", | ||
"yes" | ||
], | ||
"requires_django": [ | ||
"no", | ||
"yes" | ||
], | ||
"if_features_docs": [ | ||
"no", | ||
"yes" | ||
], | ||
"setup_py_loading_pkg_data": ["no", "yes"], | ||
"requires_django": ["no", "yes"], | ||
"if_features_docs": ["no", "yes"], | ||
"placeholder_repo_name": "placeholder_repo_name", | ||
"_copy_without_render": [".github/workflows/*.yml"], | ||
"__prompts__": { | ||
|
2 changes: 1 addition & 1 deletion
2
python-template/{{cookiecutter.placeholder_repo_name}}/test_utils/__init__.py
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