Skip to content

Commit 1b90081

Browse files
committed
fix requirements
1 parent e21f1f0 commit 1b90081

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/lint.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ jobs:
3737
- name: Install dependencies
3838
run: |
3939
pip install -r requirements_lint.txt
40-
pip install -r src/requirements.txt
40+
pip install -r src/builder/requirements.txt
41+
pip install -r src/api/requirements.txt
4142
sudo apt install shellcheck
4243
shell: bash
4344

src/api/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ You need to create a Python3 virtualenv to run this app:
3030
sudo apt install python3-virtualenv
3131
python3 -m virtualenv /var/local/lib/risk-db/venv
3232
source /var/local/lib/risk-db/venv/bin/activate
33-
pip install flask waitress maxminddb
33+
pip install -r requirements.txt
3434
```
3535

3636
----

src/api/requirements.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
flask
2+
waitress
3+
maxminddb

0 commit comments

Comments
 (0)