Skip to content

Commit a02105e

Browse files
committed
Release v1.0.7
1 parent 4134722 commit a02105e

File tree

6 files changed

+48
-20
lines changed

6 files changed

+48
-20
lines changed

.env

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
DEBUG=True
2+
3+
SECRET_KEY=<STRONG_KEY_HERE>

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ env
1010
/staticfiles/
1111

1212
#src
13-
*.sqlite*
13+
#*.sqlite*
1414

15-
.env
15+
#.env
16+
node_modules

CHANGELOG.md

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

3+
## [1.0.7] 2024-03-05
4+
### Changes
5+
6+
- Deprecate `distutils`
7+
- use `str2bool`
8+
- Update Deps
9+
- `requirements.txt`
10+
- Update [Custom Development](https://appseed.us/custom-development/) Section
11+
- New Pricing: `$3,999`
12+
313
## [1.0.6] 2023-02-09
414
### Changes
515

README.md

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,25 @@ The product is designed to deliver the best possible user experience with highly
55

66
- 👉 [Django Soft Design](https://appseed.us/product/soft-ui-design/django/) - `Product page`
77
- 👉 [Django Soft Design](https://django-soft-ui-free.appseed-srv1.com/) - `LIVE Demo`
8-
- 🛒 **[Django Soft Design PRO](https://appseed.us/product/soft-ui-design-pro/django/)** - `Premium Version`
98

109
<br />
1110

12-
> Features:
13-
14-
-`Up-to-date Dependencies`
15-
- ✅ Theme: [Django Theme Soft Design](https://github.com/app-generator/django-theme-soft-design), **designed by [Creative-Tim](https://www.creative-tim.com/product/soft-ui-design-system?AFFILIATE=128200)**
16-
-**Authentication**: `Django.contrib.AUTH`, Registration
17-
- 🚀 `Deployment`
18-
- `CI/CD` flow via `Render`
19-
20-
<br />
11+
## Features
12+
13+
> `Have questions?` Contact **[Support](https://appseed.us/support/)** (Email & Discord) provided by **AppSeed**
14+
15+
| Free Version | [PRO Version](https://appseed.us/product/soft-ui-design-pro/django/) | [Custom Development](https://appseed.us/custom-development/) |
16+
| --------------------------------------| --------------------------------------| --------------------------------------|
17+
|**Django 4.2.9** | **Everything in Free**, plus: | **Everything in PRO**, plus: |
18+
| ✓ Best Practices |**Premium Bootstrap Design** |**1mo Custom Development** |
19+
| ✓ Bootstrap Design |`Private REPO Access` |**Team**: PM, Developer, Tester |
20+
|`Docker` | ✅ OAuth - Github, Twitter | ✅ Weekly Sprints |
21+
|`CI/CD` Flow via Render | ✅ Extended User Profile | ✅ Technical SPECS |
22+
| ✓ `Free Support |**PRO Support** - [Email & Discord](https://appseed.us/support/) | ✅ Documentation |
23+
| - | ✅ Deployment Assistance |**30 days Delivery Warranty** |
24+
| - | - | - |
25+
| ------------------------------------ | ------------------------------------ | ------------------------------------|
26+
|[LIVE Demo](https://django-soft-ui-free.appseed-srv1.com/) | 🚀 [LIVE Demo](https://django-soft-design-enh.appseed-srv1.com/) | 🛒 `Order`: **[$3,999](https://appseed.gumroad.com/l/rocket-package)** (GUMROAD) |
2127

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

core/settings.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
import os, random, string
1414
from pathlib import Path
1515
from dotenv import load_dotenv
16+
from str2bool import str2bool
1617

1718
load_dotenv() # take environment variables from .env.
1819

@@ -27,14 +28,15 @@
2728
if not SECRET_KEY:
2829
SECRET_KEY = ''.join(random.choice( string.ascii_lowercase ) for i in range( 32 ))
2930

30-
# Render Deployment Code
31-
DEBUG = 'RENDER' not in os.environ
31+
# Enable/Disable DEBUG Mode
32+
DEBUG = str2bool(os.environ.get('DEBUG'))
33+
#print(' DEBUG -> ' + str(DEBUG) )
3234

3335
# Docker HOST
34-
ALLOWED_HOSTS = ['localhost']
36+
ALLOWED_HOSTS = ['*']
3537

3638
# Add here your deployment HOSTS
37-
CSRF_TRUSTED_ORIGINS = ['http://localhost:8000', 'http://localhost:5085']
39+
CSRF_TRUSTED_ORIGINS = ['http://localhost:8000', 'http://localhost:5085', 'http://127.0.0.1:8000', 'http://127.0.0.1:5085']
3840

3941
RENDER_EXTERNAL_HOSTNAME = os.environ.get('RENDER_EXTERNAL_HOSTNAME')
4042
if RENDER_EXTERNAL_HOSTNAME:

requirements.txt

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1-
django
2-
gunicorn
3-
python-dotenv
4-
whitenoise
1+
# Core
2+
django==4.2.9
3+
python-dotenv==1.0.1
4+
str2bool==1.1
5+
6+
# UI
57
django-theme-soft-design==1.0.10
68

9+
# Deployment
10+
whitenoise==6.6.0
11+
gunicorn==21.2.0
12+
713
# psycopg2-binary
814
# mysqlclient

0 commit comments

Comments
 (0)