We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd504f0 commit f413cbfCopy full SHA for f413cbf
docs/demo.md
@@ -186,7 +186,7 @@ def main(args: List[str]) -> None:
186
In order to test the action, run the following command and you'll see the content of `message`.
187
188
```bash
189
-env $(cat .env | xargs) python main.py
+make
190
```
191
192
```plaintext
{{cookiecutter.action_slug}}/.dockerignore
@@ -1,5 +1,5 @@
1
# Ignore all files and folders that start with a dot.
2
-**/*.
+.*
3
4
# Ignore all virtual envs'
5
venv/
@@ -21,7 +21,4 @@ CONTRIBUTING.md
21
CHANGELOG.md
22
LICENSE
23
Dockerfile
24
-.env
25
-.github/
26
-
27
-.git/
+Makefile
{{cookiecutter.action_slug}}/Makefile
@@ -0,0 +1,2 @@
+run:
+ @env $$(cat .env | xargs) python main.py
0 commit comments