Skip to content

Commit f413cbf

Browse files
committed
make command added closes #26
1 parent dd504f0 commit f413cbf

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

docs/demo.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def main(args: List[str]) -> None:
186186
In order to test the action, run the following command and you'll see the content of `message`.
187187

188188
```bash
189-
env $(cat .env | xargs) python main.py
189+
make
190190
```
191191

192192
```plaintext

{{cookiecutter.action_slug}}/.dockerignore

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Ignore all files and folders that start with a dot.
2-
**/*.
2+
.*
33

44
# Ignore all virtual envs'
55
venv/
@@ -21,7 +21,4 @@ CONTRIBUTING.md
2121
CHANGELOG.md
2222
LICENSE
2323
Dockerfile
24-
.env
25-
.github/
26-
27-
.git/
24+
Makefile

{{cookiecutter.action_slug}}/Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
run:
2+
@env $$(cat .env | xargs) python main.py

0 commit comments

Comments
 (0)