Skip to content

Commit 4f24731

Browse files
committed
Release v1.0.13
1 parent 5ee4652 commit 4f24731

File tree

3 files changed

+9
-13
lines changed

3 files changed

+9
-13
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: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## [1.0.13] 2024-10-17
4+
### Changes
5+
6+
- Update Versions
7+
- Fix for Python 13
8+
39
## [1.0.12] 2024-05-18
410
### Changes
511

README.md

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,11 @@ $ pip3 install -r requirements.txt
108108
```bash
109109
$ # CMD
110110
$ set FLASK_APP=run.py
111-
$ set FLASK_ENV=development
111+
$ set FLASK_DEBUG=True
112112
$
113113
$ # Powershell
114114
$ $env:FLASK_APP = ".\run.py"
115-
$ $env:FLASK_ENV = "development"
115+
$ $env:FLASK_DEBUG = "True"
116116
```
117117

118118
<br />
@@ -139,16 +139,6 @@ By default, the app redirects guest users to authenticate. In order to access th
139139

140140
<br />
141141

142-
## `Go LIVE` via [LIVE Deployer](https://appseed.us/go-live/)
143-
144-
> This video explains `how to deploy` the product LIVE using a `Drag & Drop` gesture.
145-
146-
<br />
147-
148-
https://user-images.githubusercontent.com/51070104/202416162-885c30d3-5066-40cb-abcd-1668689c9463.mp4
149-
150-
<br />
151-
152142
## Codebase structure
153143

154144
The project is coded using blueprints, app factory pattern, dual configuration profile (development and production) and an intuitive structure presented bellow:

0 commit comments

Comments
 (0)