We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0496ab4 commit 47d7872Copy full SHA for 47d7872
README.md
@@ -42,3 +42,16 @@ cookiecutter gh:frequenz-floss/frequenz-repo-config-python --directory=cookiecut
42
43
This will prompt for the project type, name and other configuration and
44
generate the whole project for you.
45
+
46
+After completing it and fixing the TODOs
47
+you can amend the previous commit using `git commit --amend`
48
+or create a new commit for the changes using `git commit`.
49
+You can make sure linting and tests pass by creating a virtual
50
+environment, installing the development dependencies and running `nox`:
51
+```sh
52
+# requires at least python version 3.11
53
+python3 -m venv .venv
54
+. .venv/bin/activate
55
+pip install .[dev-noxfile]
56
+nox
57
+```
0 commit comments