Skip to content

Commit 279d870

Browse files
committed
Release v1.0.16
1 parent 96b55b8 commit 279d870

File tree

8 files changed

+27
-90
lines changed

8 files changed

+27
-90
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ DEBUG=False
33

44
# Flask ENV
55
FLASK_APP=run.py
6-
FLASK_ENV=development
6+
FLASK_DEBUG=True
77

88
# If not provided, a random one is generated
99
# SECRET_KEY=<YOUR_SUPER_KEY_HERE>

CHANGELOG.md

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

3+
## [1.0.16] 2024-10-28
4+
### Changes
5+
6+
- `SECRET_KEY`: remove the random string if not found
7+
- Update Versions
8+
- Fix for Python 13
9+
310
## [1.0.15] 2024-05-18
411
### Changes
512

README.md

Lines changed: 4 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -5,27 +5,6 @@
55
- 👉 [Flask Pixel Lite](https://appseed.us/product/pixel-bootstrap/flask/) - product page
66
- 👉 [Flask Pixel Lite](https://flask-pixel-lite.appseed-srv1.com/) - LIVE Deployment
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/pixel-bootstrap-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 |`Auth` Provided by **Flask-Security-Too** |**Dedicated Developer** |
19-
| ✓ DB Tools: ORM, Flask-Migrate |`Extended User Model` | ✅ Weekly Sprints |
20-
| ✓ Session-Based authentication |`Users Roles` | ✅ Technical SPECS |
21-
|`Docker` |`Private REPO Access` | ✅ Documentation |
22-
|`CI/CD` Flow via Render |**PRO Support** - [Email & Discord](https://appseed.us/support/) |**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-pixel-lite.appseed-srv1.com/) | 🚀 [LIVE Demo](https://flask-pixel-enhanced.onrender.com/) `PRO` | **[Get in Touch ➡️](https://appseed.us/custom-development/)** |
26-
27-
![Pixel Bootstrap Lite - Full-Stack Starter generated by AppSeed.](https://user-images.githubusercontent.com/51070104/168753915-d61b2f97-57b2-4d14-a774-d217d120ff62.png)
28-
298
<br />
309

3110
## Start with `Docker`
@@ -76,7 +55,7 @@ $ pip3 install -r requirements.txt
7655
7756
```bash
7857
$ export FLASK_APP=run.py
79-
$ export FLASK_ENV=development
58+
$ export FLASK_DEBUG=True
8059
```
8160

8261
<br />
@@ -108,11 +87,11 @@ $ pip3 install -r requirements.txt
10887
```bash
10988
$ # CMD
11089
$ set FLASK_APP=run.py
111-
$ set FLASK_ENV=development
90+
$ set FLASK_DEBUG=True
11291
$
11392
$ # Powershell
11493
$ $env:FLASK_APP = ".\run.py"
115-
$ $env:FLASK_ENV = "development"
94+
$ $env:FLASK_DEBUG = "True"
11695
```
11796

11897
<br />
@@ -225,4 +204,4 @@ The project is coded using blueprints, app factory pattern, dual configuration p
225204
<br />
226205

227206
---
228-
[Flask Pixel Lite](https://appseed.us/product/pixel-bootstrap/flask/) - Open-source starter generated by **[App Generator](https://appseed.us/generator/)**.
207+
[Flask Pixel Lite](https://appseed.us/product/pixel-bootstrap/flask/) - Open-source Flask Starter provided by **[App Generator](https://app-generator.dev/)**.

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

deployer.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

log.json

Lines changed: 0 additions & 23 deletions
This file was deleted.

package.json

Lines changed: 0 additions & 20 deletions
This file was deleted.

requirements.txt

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
flask==2.0.2
2-
Werkzeug==2.0.3
3-
jinja2==3.0.2
4-
flask_login==0.5.0
5-
flask_migrate==3.1.0
6-
WTForms==3.0.0
7-
flask_wtf==1.0.0
8-
flask_sqlalchemy==2.5.1
9-
sqlalchemy==1.4.29
10-
email_validator==1.1.3
11-
gunicorn==20.1.0
12-
flask-restx==0.5.1
13-
python-dotenv==0.19.2
14-
Flask-Minify==0.37
1+
flask==2.2.5
2+
Werkzeug==3.0.4
3+
jinja2==3.1.4
4+
flask_login==0.6.3
5+
flask_migrate==4.0.7
6+
WTForms==3.1.2
7+
flask_wtf==1.2.1
8+
flask_sqlalchemy==3.1.1
9+
sqlalchemy==2.0.36
10+
email_validator==2.2.0
11+
gunicorn==23.0.0
12+
flask-restx==1.3.0
13+
python-dotenv==1.0.1
14+
Flask-Minify==0.48
1515

1616
# flask_mysqldb
1717
# psycopg2-binary

0 commit comments

Comments
 (0)