Skip to content

Commit

Permalink
Release v1.0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
app-generator committed Oct 28, 2024
1 parent 96b55b8 commit 279d870
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 90 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=development
FLASK_DEBUG=True

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

## [1.0.16] 2024-10-28
### Changes

- `SECRET_KEY`: remove the random string if not found
- Update Versions
- Fix for Python 13

## [1.0.15] 2024-05-18
### Changes

Expand Down
29 changes: 4 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,6 @@
- 👉 [Flask Pixel Lite](https://appseed.us/product/pixel-bootstrap/flask/) - product page
- 👉 [Flask Pixel Lite](https://flask-pixel-lite.appseed-srv1.com/) - LIVE Deployment

<br />

## Features

> `Have questions?` Contact **[Support](https://appseed.us/support/)** (Email & Discord) provided by **AppSeed**
| Free Version | [PRO Version](https://appseed.us/product/pixel-bootstrap-pro/flask/) | [Custom Development](https://appseed.us/custom-development/) |
| --------------------------------------| --------------------------------------| --------------------------------------|
|**Up-to-date dependencies** | **Everything in Free**, plus: | **Everything in PRO**, plus: |
| ✓ Best Practices |**Premium Bootstrap 5 Design** |**1 Week** `Custom Development` |
| ✓ DB: SQLite, MySql |`Auth` Provided by **Flask-Security-Too** |**Dedicated Developer** |
| ✓ DB Tools: ORM, Flask-Migrate |`Extended User Model` | ✅ Weekly Sprints |
| ✓ Session-Based authentication |`Users Roles` | ✅ Technical SPECS |
|`Docker` |`Private REPO Access` | ✅ Documentation |
|`CI/CD` Flow via Render |**PRO Support** - [Email & Discord](https://appseed.us/support/) |**30 days Delivery Warranty** |
|`Free Support` | - |[CI/CD for AWS, DO](https://appseed.us/terms/#section-ci-cd) **(Extra)** |
| --------------------------------- | --------------------------------- | --------------------------------- |
|[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/)** |

![Pixel Bootstrap Lite - Full-Stack Starter generated by AppSeed.](https://user-images.githubusercontent.com/51070104/168753915-d61b2f97-57b2-4d14-a774-d217d120ff62.png)

<br />

## Start with `Docker`
Expand Down Expand Up @@ -76,7 +55,7 @@ $ pip3 install -r requirements.txt
```bash
$ export FLASK_APP=run.py
$ export FLASK_ENV=development
$ export FLASK_DEBUG=True
```

<br />
Expand Down Expand Up @@ -108,11 +87,11 @@ $ pip3 install -r requirements.txt
```bash
$ # CMD
$ set FLASK_APP=run.py
$ set FLASK_ENV=development
$ set FLASK_DEBUG=True
$
$ # Powershell
$ $env:FLASK_APP = ".\run.py"
$ $env:FLASK_ENV = "development"
$ $env:FLASK_DEBUG = "True"
```

<br />
Expand Down Expand Up @@ -225,4 +204,4 @@ The project is coded using blueprints, app factory pattern, dual configuration p
<br />

---
[Flask Pixel Lite](https://appseed.us/product/pixel-bootstrap/flask/) - Open-source starter generated by **[App Generator](https://appseed.us/generator/)**.
[Flask Pixel Lite](https://appseed.us/product/pixel-bootstrap/flask/) - Open-source Flask Starter provided by **[App Generator](https://app-generator.dev/)**.
4 changes: 1 addition & 3 deletions apps/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ class Config(object):
ASSETS_ROOT = os.getenv('ASSETS_ROOT', '/static/assets')

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

SQLALCHEMY_TRACK_MODIFICATIONS = False

Expand Down
4 changes: 0 additions & 4 deletions deployer.json

This file was deleted.

23 changes: 0 additions & 23 deletions log.json

This file was deleted.

20 changes: 0 additions & 20 deletions package.json

This file was deleted.

28 changes: 14 additions & 14 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
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
python-dotenv==0.19.2
Flask-Minify==0.37
flask==2.2.5
Werkzeug==3.0.4
jinja2==3.1.4
flask_login==0.6.3
flask_migrate==4.0.7
WTForms==3.1.2
flask_wtf==1.2.1
flask_sqlalchemy==3.1.1
sqlalchemy==2.0.36
email_validator==2.2.0
gunicorn==23.0.0
flask-restx==1.3.0
python-dotenv==1.0.1
Flask-Minify==0.48

# flask_mysqldb
# psycopg2-binary

0 comments on commit 279d870

Please sign in to comment.