generated from AaronSaikovski/pystarter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTaskfile.yml
170 lines (134 loc) · 5.61 KB
/
Taskfile.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
# MIT License
# # Copyright (c) 2024 Aaron Saikovski
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
# https://taskfile.dev
version: "3"
#ENV VARS
env:
PROJECT_PYTHON_VER: ">=3.12,<3.13"
PROJECT_NAME: "pyazvalidatemoveresources"
PROJECT_DESC: "Azure resource move validation Python script"
PROJECT_AUTHOR: "Aaron Saikovski <[email protected]>"
PROJECT_VERSION: "3.0.4"
PROJECT_LICENSE: "MIT"
ENV: dev
###############################################################################
tasks:
## default - Default cmd - create
default:
deps: [create]
desc: "Call Create as default cmd."
###########################################################################
## create - Inits the poetry virtual environment and installs baseline packages
create:
desc: "Inits the poetry virtual environment and installs baseline packages."
cmds:
- poetry config virtualenvs.in-project true
- poetry init --name="$PROJECT_NAME" --description="$PROJECT_DESC" --author="$PROJECT_AUTHOR" --python="$PROJECT_PYTHON_VER" --license="$PROJECT_LICENSE" --no-interaction
- poetry env use python3.12
###########################################################################
## deps - Install the dependencies
deps:
desc: "Install the dependencies."
cmds:
- poetry add pytest pytest-cov black ruff bandit pyinstaller --group dev
- poetry add azure-mgmt-resource azure-identity azure-mgmt-storage
- poetry update
###########################################################################
## activate - Activates the virtual environment
activate:
desc: "Activates the virtual environment."
cmds:
- . ./.venv/bin/activate
###########################################################################
## install - installs the poetry environment with dependencies
install:
desc: "installs the poetry environment with dependencies."
cmds:
- poetry install
###########################################################################
## run - Run the script main.py
run:
desc: "Run the script main.py"
deps: [activate]
cmds:
- poetry run python main.py
###########################################################################
## clean - Cleans the environment, Overwrites the pyproject.toml file
clean:
desc: "Cleans the environment, Overwrites the pyproject.toml file"
cmds:
- find . -type f -name '*.py[co]' -delete -o -type d -name __pycache__ -delete
- rm -rf .venv
- rm -rf venv
- rm -rf .pytest_cache
- rm -rf ./dist
- rm -rf ./build
- rm -rf .ruff_cache
- rm -rf .mypy_cache
- rm -rf poetry.lock
- rm -rf main.spec
- cat pyproject_base.toml > pyproject.toml
#############################################################################
## test - Tests the project
test:
desc: "Tests the project."
deps: [activate]
cmds:
- poetry run python -m pytest tests
###########################################################################
## update - updates dependency versions
update:
desc: "updates dependency versions"
deps: [activate]
cmds:
- poetry update -v
###########################################################################
## lint - Lints the project using ruff --fix
lint:
desc: "Lints the project using ruff --fix"
deps: [activate]
cmds:
- poetry run ruff check . --fix
###########################################################################
## vulncheck - Checks for vulnerabilities in the project
vulncheck:
desc: "Checks for vulnerabilities in the project"
cmds:
- poetry run bandit -r .
###########################################################################
## release - uses pyinstaller to package your Python application into a single package
release:
desc: "uses pyinstaller to package your Python application into a single package"
deps: [activate]
cmds:
- poetry run pyinstaller main.py
###############################################################################
## docker-build - builds a docker image based on the docker file
docker-build:
desc: "builds a docker image based on the docker file"
deps: [deps]
cmds:
- docker build -t $PROJECT_NAME:latest .
###############################################################################
## docker-run - runs the docker container
docker-run:
desc: "builds a docker image based on the docker file"
#deps: [docker-build]
cmds:
- docker run $PROJECT_NAME:latest
###############################################################################