Skip to content

Commit

Permalink
Release v1.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
app-generator committed Oct 28, 2024
1 parent a77b57a commit 52e9aba
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 29 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.12] 2024-10-28
### Changes

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

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

Expand Down
31 changes: 6 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,30 +5,11 @@
- 👉 [Soft UI Design Flask](https://appseed.us/product/soft-ui-design/flask/) - Product page
- 👉 [Soft UI Design Flask](https://flask-soft-ui-free.appseed-srv1.com/) - LIVE Demo

<br />

## Features

> `Have questions?` Contact **[Support](https://appseed.us/support/)** (Email & Discord) provided by **AppSeed**
| Free Version | [PRO Version](https://appseed.us/product/soft-ui-design-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 |**PRO Support** - [Email & Discord](https://appseed.us/support/) |**Team**: PM, Developer, Tester |
| ✓ DB Tools: ORM, Flask-Migrate |`Private REPO Access` | ✅ Weekly Sprints |
| ✓ Session-Based authentication | - | ✅ Technical SPECS |
|`Docker` | - | ✅ Documentation |
|`CI/CD` Flow via Render | - |**30 days Delivery Warranty** |
|`Free Support` | - |[CI/CD for AWS, DO](https://appseed.us/terms/#section-ci-cd) **(Extra)** |
| --------------------------------- | --------------------------------- | --------------------------------- |
|[LIVE Demo](https://flask-soft-ui-free.appseed-srv1.com) | 🚀 [LIVE Demo](https://flask-soft-design-enh.appseed-srv1.com/) `PRO` | **[Get in Touch ➡️](https://appseed.us/custom-development/)** |

![Soft UI Design - Full-Stack Starter generated by AppSeed.](https://user-images.githubusercontent.com/51070104/168812602-e35bad42-823f-4d3e-9d13-87a6c06c5a63.png)

<br />

## Start the app in Docker
## Start with Docker

> 👉 **Step 1** - Download the code from the GH repository (using `GIT`)
Expand All @@ -49,7 +30,7 @@ Visit `http://localhost:5085` in your browser. The app should be up & running.

<br />

## ✨ How to use it
## Manual Build

> Download the code
Expand All @@ -76,7 +57,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 +89,11 @@ $ pip3 install -r requirements.txt
```bash
$ # CMD
$ set FLASK_APP=run.py
$ set FLASK_ENV=development
$ set FLASK_ENV=True
$
$ # Powershell
$ $env:FLASK_APP = ".\run.py"
$ $env:FLASK_ENV = "development"
$ $env:FLASK_ENV = "True"
```

<br />
Expand Down Expand Up @@ -208,4 +189,4 @@ Soft UI Design is a premium Bootstrap 5 Design now available for download in Fla
<br />

---
[Soft UI Design Flask](https://appseed.us/product/soft-ui-design/flask/) - Open-source starter generated by **[App Generator](https://appseed.us/generator/)**.
[Soft UI Design Flask](https://appseed.us/product/soft-ui-design/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

0 comments on commit 52e9aba

Please sign in to comment.