Skip to content

Commit

Permalink
Release v1.0.15
Browse files Browse the repository at this point in the history
  • Loading branch information
app-generator committed Oct 7, 2023
1 parent 83cdfd7 commit 2e88cce
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ DEBUG=False

# Flask ENV
FLASK_APP=run.py
FLASK_ENV=production
FLASK_DEBUG=1

# If not provided, a random one is generated
# SECRET_KEY=<YOUR_SUPER_KEY_HERE>
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## [1.0.15] 2023-10-07
### Changes

- Update Dependencies

## [1.0.14] 2023-01-02
### Changes

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9
FROM python:3.10

# set environment variables
ENV PYTHONDONTWRITEBYTECODE 1
Expand Down
1 change: 0 additions & 1 deletion apps/authentication/oauth.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
from flask_dance.consumer import oauth_authorized
from flask_dance.contrib.github import github, make_github_blueprint
from flask_dance.consumer.storage.sqla import SQLAlchemyStorage
from flask_dance.contrib.twitter import twitter, make_twitter_blueprint
from sqlalchemy.orm.exc import NoResultFound
from apps.config import Config
from .models import Users, db, OAuth
Expand Down
2 changes: 1 addition & 1 deletion env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
DEBUG=True

FLASK_APP=run.py
FLASK_ENV=development
FLASK_DEBUG=1

# If not provided, a random one is generated
# SECRET_KEY=<YOUR_SUPER_KEY_HERE>
Expand Down
33 changes: 17 additions & 16 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
flask==2.0.2
Werkzeug==2.0.3
jinja2==3.0.2
flask_login==0.5.0
flask_migrate==3.1.0
WTForms==3.0.0
flask_wtf==1.0.0
flask_sqlalchemy==2.5.1
sqlalchemy==1.4.29
email_validator==1.1.3
gunicorn==20.1.0
flask-restx==0.5.1
flask==2.2.5
Werkzeug==2.3.7
jinja2==3.1.2
flask-login==0.6.2
flask_migrate==4.0.4
WTForms==3.0.1
flask_wtf==1.2.1
flask-sqlalchemy==3.0.5
sqlalchemy==2.0.21
email_validator==2.0.0
python-dotenv==0.19.2
Flask-Minify==0.37
Flask-Dance==5.1.0
blinker==1.4
pyOpenSSL
WTForms-Alchemy==0.18.0
PyJWT~=2.4.0
flask-restx==1.0.3

gunicorn==20.1.0
Flask-Minify==0.37

Flask-Dance==7.0.0
PyJWT==2.4.0

# flask_mysqldb
# psycopg2-binary

0 comments on commit 2e88cce

Please sign in to comment.