Skip to content

Commit a17ea9f

Browse files
authored
Merge pull request #59 from zfi/master
Patch to correct migrstion issues
2 parents 5813b8a + 601009a commit a17ea9f

File tree

3 files changed

+34
-2
lines changed

3 files changed

+34
-2
lines changed

app/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
DEFAULT_LOG_PATH = '/var/log/supervisor/cloud-session-app.log'
5656

5757
# Define the WSGI application object
58-
app: Flask = Flask(__name__)
58+
app = Flask(__name__)
5959

6060
# Application version (major,minor,patch-level)
6161
# version has been moved to the __version__.py.

requirements.dev.txt

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
aniso8601==6.0.0
2+
atomicwrites==1.3.0
3+
attrs==19.1.0
4+
blinker==1.4
5+
certifi==2019.3.9
6+
Click==7.0
7+
Flask==1.0.2
8+
Flask-Mail==0.9.1
9+
Flask-RESTful==0.3.7
10+
Flask-SQLAlchemy==2.3.2
11+
itsdangerous==1.1.0
12+
Jinja2==2.10
13+
MarkupSafe==1.1.1
14+
more-itertools==6.0.0
15+
mysqlclient==1.4.2.post1
16+
pipdeptree==0.13.2
17+
pkg-resources==0.0.0
18+
pluggy==0.9.0
19+
py==1.8.0
20+
pystache==0.5.4
21+
pytest==4.3.1
22+
pytest-mock==1.10.3
23+
pytz==2018.9
24+
sentry-sdk==0.7.6
25+
six==1.12.0
26+
SQLAlchemy==1.3.0
27+
urllib3==1.24.1
28+
uWSGI==2.0.18
29+
validate-email==1.3
30+
Werkzeug==0.14.1

requirements.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,16 @@ itsdangerous==1.1.0
1212
Jinja2==2.10
1313
MarkupSafe==1.1.1
1414
more-itertools==6.0.0
15+
mysqlclient==1.4.2.post1
16+
pkg-resources==0.0.0
1517
pluggy==0.9.0
1618
py==1.8.0
1719
pystache==0.5.4
18-
pytest==4.3.1
1920
pytz==2018.9
2021
sentry-sdk==0.7.6
2122
six==1.12.0
2223
SQLAlchemy==1.3.0
2324
urllib3==1.24.1
25+
uWSGI==2.0.18
2426
validate-email==1.3
2527
Werkzeug==0.14.1

0 commit comments

Comments
 (0)