Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump flask from 1.0.2 to 2.3.2 , Bump Flask-SQLAlchemy to 3.0.5 #148

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ git clone https://github.com/Netflix-Skunkworks/aardvark.git
cd aardvark
python3 -m venv env
. env/bin/activate
pip3 install -r requirements.txt
python setup.py develop
```

Expand Down Expand Up @@ -143,12 +144,17 @@ Once this file is created, then build the containers and start the services. Aar
- API Server - This is the HTTP webserver will serve the data. By default, this is listening on [http://localhost:5000/apidocs/#!](http://localhost:5000/apidocs/#!).
- Collector - This is a daemon that will fetch and cache the data in the local SQL database. This should be run periodically.

```bash
# build the containers
docker-compose build
### Docker Way

# start up the containers
docker-compose up
```bash
git clone https://github.com/Netflix-Skunkworks/aardvark
cd aardvark
docker run -it --rm -v $(pwd):/opt python:3.9 /bin/bash
cd /opt/
python3 -m venv env
. env/bin/activate
pip3 install -r requirements.txt
python3 setup.py develop
```

Finally, to clean up the environment
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ docutils==0.15.2
dogpile.cache==0.8.0
flagpole==1.1.1
flasgger==0.6.3
Flask==1.0.2
Flask==2.3.2
Flask-RESTful==0.3.5
Flask-Script==2.0.5
Flask-SQLAlchemy>=2.5
Flask-SQLAlchemy==3.0.5
gunicorn==19.7.1
idna==2.8
importlib-metadata
Expand Down