mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
feat(repo): venv for python stuff
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -10,6 +10,7 @@
|
||||
/package.json
|
||||
/package-lock.json
|
||||
|
||||
.venv/
|
||||
__pycache__/
|
||||
|
||||
.obsidian/
|
||||
|
||||
4
Makefile
Normal file
4
Makefile
Normal file
@@ -0,0 +1,4 @@
|
||||
create-venv: override python_version ?= 3.12
|
||||
create-venv:
|
||||
python${python_version} -m 'venv' '.venv'
|
||||
source '.venv/bin/activate' && pip install -r 'requirements.txt'
|
||||
2
requirements.txt
Normal file
2
requirements.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
ansible==9.3.0
|
||||
click==8.1.7
|
||||
Reference in New Issue
Block a user