Skip to content

Commit 18a5a9a

Browse files
author
ExpDev07
committed
fixed
1 parent 21dbb7e commit 18a5a9a

File tree

4 files changed

+51
-81
lines changed

4 files changed

+51
-81
lines changed

Pipfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ url = "https://pypi.org/simple"
44
verify_ssl = true
55

66
[dev-packages]
7-
pylint = "*"
7+
bandit = "*"
88

99
[packages]
1010
flask = "*"
11-
requests = "*"
1211
python-dotenv = "*"
12+
requests = "*"
1313

1414
[requires]
15-
python_version = "3.7"
15+
python_version = "3.8"

Pipfile.lock

Lines changed: 46 additions & 75 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Procfile

Lines changed: 0 additions & 1 deletion
This file was deleted.

wsgi.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from settings import *
22
from app import app
33

4+
# Run the application (server).
45
if __name__ == 'main':
5-
# Run the flask application on the specified port!
6-
app.run(port=PORT)
6+
app.run(port=PORT, threaded=True)

0 commit comments

Comments
 (0)