feat & fix: mv env setup to make

This commit is contained in:
Alan Alexander Thomas 2022-08-19 19:29:28 +05:30
parent 1a1e30ba27
commit 49520b554f
2 changed files with 3 additions and 1 deletions

View File

@ -4,4 +4,4 @@ pipeline:
commands:
- pip install virtualenv
- virtualenv venv
- . ./venv/bin/activate && pip install -r requirements.txt
- make env

2
Makefile Normal file
View File

@ -0,0 +1,2 @@
env:
. ./venv/bin/activate && pip install -r requirements.txt