Skip to content

Commit b20a79f

Browse files
committed
Release v1.0.14
1 parent 4f24731 commit b20a79f

File tree

3 files changed

+6
-22
lines changed

3 files changed

+6
-22
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change Log
22

3+
## [1.0.14] 2024-10-28
4+
### Changes
5+
6+
- `SECRET_KEY`: remove the random string if not found
7+
38
## [1.0.13] 2024-10-17
49
### Changes
510

README.md

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,6 @@
55
- 👉 [Flask Material Kit](https://appseed.us/product/material-kit/flask/) - product page
66
- 👉 [Flask Material Kit](https://flask-material-kit.appseed-srv1.com/) - LIVE App
77

8-
<br />
9-
10-
## Features
11-
12-
> `Have questions?` Contact **[Support](https://appseed.us/support/)** (Email & Discord) provided by **AppSeed**
13-
14-
| Free Version | [PRO Version](https://appseed.us/product/material-kit2-pro/flask/) | [Custom Development](https://appseed.us/custom-development/) |
15-
| --------------------------------------| --------------------------------------| --------------------------------------|
16-
|**Up-to-date dependencies** | **Everything in Free**, plus: | **Everything in PRO**, plus: |
17-
| ✓ Best Practices |**Premium Bootstrap 5 Design** |**1 Week** `Custom Development` |
18-
| ✓ DB: SQLite, MySql |**PRO Support** - [Email & Discord](https://appseed.us/support/) |**Team**: PM, Developer, Tester |
19-
| ✓ DB Tools: ORM, Flask-Migrate |`Private REPO Access` | ✅ Weekly Sprints |
20-
| ✓ Session-Based authentication | - | ✅ Technical SPECS |
21-
|`Docker` | - | ✅ Documentation |
22-
|`CI/CD` Flow via Render | - |**30 days Delivery Warranty** |
23-
|`Free Support` | - |[CI/CD for AWS, DO](https://appseed.us/terms/#section-ci-cd) **(Extra)** |
24-
| --------------------------------- | --------------------------------- | --------------------------------- |
25-
|[LIVE Demo](https://flask-material-kit.appseed-srv1.com) | 🚀 [LIVE Demo](https://flask-material-kit2-enh.appseed-srv1.com) `PRO` | **[Get in Touch ➡️](https://appseed.us/custom-development/)** |
26-
278
![Material Kit - Starter generated by AppSeed.](https://user-images.githubusercontent.com/51070104/167396765-c88b7a95-155f-4236-8691-7b80fa2d9cd9.png)
289

2910
<br />

apps/config.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@ class Config(object):
1313
ASSETS_ROOT = os.getenv('ASSETS_ROOT', '/static/assets')
1414

1515
# Set up the App SECRET_KEY
16-
SECRET_KEY = os.getenv('SECRET_KEY', None)
17-
if not SECRET_KEY:
18-
SECRET_KEY = ''.join(random.choice( string.ascii_lowercase ) for i in range( 32 ))
16+
SECRET_KEY = os.getenv('SECRET_KEY', 'Secr3t_55xA')
1917

2018
SQLALCHEMY_TRACK_MODIFICATIONS = False
2119

0 commit comments

Comments
 (0)