Skip to content

Commit

Permalink
Release v1.0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
app-generator committed Oct 17, 2024
1 parent 5ee4652 commit 4f24731
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 13 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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## [1.0.13] 2024-10-17
### Changes

- Update Versions
- Fix for Python 13

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

Expand Down
14 changes: 2 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,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 All @@ -139,16 +139,6 @@ By default, the app redirects guest users to authenticate. In order to access th

<br />

## `Go LIVE` via [LIVE Deployer](https://appseed.us/go-live/)

> This video explains `how to deploy` the product LIVE using a `Drag & Drop` gesture.
<br />

https://user-images.githubusercontent.com/51070104/202416162-885c30d3-5066-40cb-abcd-1668689c9463.mp4

<br />

## Codebase structure

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

0 comments on commit 4f24731

Please sign in to comment.