Skip to content

Commit

Permalink
v1.0.2-rc1 - Bump Codebase v1.0.5
Browse files Browse the repository at this point in the history
- Flask Codebase: v1.0.5
- Freeze flask_sqlalchemy version
  • Loading branch information
App Generator committed Mar 18, 2021
1 parent 54ec510 commit c033cf6
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 21 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## [1.0.2] 2021-03-18
### Improvements

- Bump Codebase: [Flask Dashboard](https://github.com/app-generator/boilerplate-code-flask-dashboard) v1.0.5
- Freeze used versions in `requirements.txt`
- flask_sqlalchemy = 2.4.4
- sqlalchemy = 1.3.23

## [1.0.1] 2021-01-07
### Improvements

Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
# [Flask Dashboard](https://appseed.us/admin-dashboards/flask) Corona Dark

[Admin dashboard](https://appseed.us/admin-dashboards) generated by AppSeed in **[Flask](https://appseed.us/admin-dashboards/flask)** Framework.

Corona Dark Free admin template has beautiful typography, crisp design, and neatly designed dashboards. It combines colors that are easy on the eye, spacious cards, beautiful typography, and graphics.
[Admin dashboard](https://appseed.us/admin-dashboards) generated by AppSeed in **[Flask](https://appseed.us/admin-dashboards/flask)** Framework. Corona Dark Free admin template has beautiful typography, crisp design, and neatly designed dashboards. It combines colors that are easy on the eye, spacious cards, beautiful typography, and graphics.

<br />

> Features
- DBMS: SQLite, PostgreSQL (production)
- DB Tools: SQLAlchemy ORM, Alembic (schema migrations)
- DB Tools: SQLAlchemy ORM, Flask-Migrate (schema migrations)
- Modular design with **Blueprints**, simple codebase
- Session-Based authentication (via **flask_login**), Forms validation
- Deployment scripts: Docker, Gunicorn / Nginx, Heroku
Expand Down
8 changes: 0 additions & 8 deletions app/base/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,14 +93,6 @@ def logout():
logout_user()
return redirect(url_for('base_blueprint.login'))

@blueprint.route('/shutdown')
def shutdown():
func = request.environ.get('werkzeug.server.shutdown')
if func is None:
raise RuntimeError('Not running with the Werkzeug Server')
func()
return 'Server shutting down...'

## Errors

@login_manager.unauthorized_handler
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "flask-dashboard-corona-dark",
"mastertemplate": "boilerplate-code-flask-dashboard",
"version": "1.0.1",
"version": "1.0.2",
"description": "Template project - Flask Boilerplate Code",
"repository": {
"type": "git",
Expand Down
17 changes: 9 additions & 8 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
flask
flask_login
flask_migrate
flask_wtf
flask_sqlalchemy==2.*
email_validator
python-decouple
gunicorn
flask==1.1.2
flask_login==0.5.0
flask_migrate==2.7.0
flask_wtf==0.14.3
flask_sqlalchemy==2.4.4
sqlalchemy==1.3.23
email_validator==1.1.2
python-decouple==3.4
gunicorn==20.0.4

0 comments on commit c033cf6

Please sign in to comment.