Skip to content

Commit

Permalink
Release v1.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
app-generator committed Mar 7, 2024
1 parent fab6ee2 commit 9d5f3db
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 18 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log

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

- Deprecate `distutils`
- use `str2bool`
- Update Deps
- `requirements.txt`
- Update [Custom Development](https://appseed.us/custom-development/) Section
- New Pricing: `$3,999`

## [1.0.10] 2023-10-24
### Changes

Expand Down
21 changes: 11 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,24 @@ The product is designed to deliver the best possible user experience with highly
- 👉 [Django Pixel Bootstrap 5](https://appseed.us/product/pixel-bootstrap/django/) - `Product page`
- 👉 [Django Pixel Bootstrap 5](https://django-pixel-lite.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/pixel-bootstrap-pro/django/) | 🚀 Custom - $3,999 (plus VAT) |
| Free Version | [PRO Version](https://appseed.us/product/pixel-bootstrap-pro/django/) | [Custom Development](https://appseed.us/custom-development/) |
| --------------------------------------| --------------------------------------| --------------------------------------|
|**Django 4.1.12** | **Everything in Free**, plus: | **Everything in PRO**, plus: |
| ✓ Best Practices |**Premium Bootstrap Design** |**1mo Custom Development** |
| ✓ Bootstrap Design |`Private REPO Access` |**Dedicated Developer** |
|`Docker` | ✅ OAuth - Github, Twitter | ✅ Weekly Sprints |
|`CI/CD` Flow via Render | ✅ Extended User Profile | ✅ Technical SPECS |
| ✓ `Free Support |**PRO Support** - [Email & Discord](https://appseed.us/support/) | ✅ Documentation |
| - | ✅ Deployment Assistance |**30 days Delivery Warranty** |
|**Django 4.1.12** | **Everything in Free**, plus: | **Everything in PRO**, plus: |
| ✓ Best Practices |**Premium Bootstrap Design** |**1mo Custom Development** |
| ✓ Bootstrap Design |`Private REPO Access` |**Team**: PM, Developer, Tester |
|`Docker` | ✅ OAuth - Github, Twitter | ✅ Weekly Sprints |
|`CI/CD` Flow via Render | ✅ Extended User Profile | ✅ Technical SPECS |
| ✓ `Free Support |**PRO Support** - [Email & Discord](https://appseed.us/support/) | ✅ Documentation |
| - | ✅ Deployment Assistance |**30 days Delivery Warranty** |
| - | - | - |
| ------------------------------------ | ------------------------------------ | ------------------------------------|
|[LIVE Demo](https://django-pixel-lite.appseed-srv1.com/) | 🚀 [LIVE Demo](https://django-pixel-enh.appseed-srv1.com/) | 🛒 `Order`: **[$3,999](https://appseed.gumroad.com/l/rocket-package)** (GUMROAD) |
|[LIVE Demo](https://django-pixel-lite.appseed-srv1.com/) | 🚀 [LIVE Demo](https://django-pixel-enh.appseed-srv1.com/) | 🛒 `Order`: **[$3,999](https://appseed.gumroad.com/l/rocket-package)** (GUMROAD) |

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

Expand Down
10 changes: 6 additions & 4 deletions core/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
import os, random, string
from pathlib import Path
from dotenv import load_dotenv
from str2bool import str2bool

load_dotenv() # take environment variables from .env.

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

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

# Docker HOST
ALLOWED_HOSTS = ['localhost']
ALLOWED_HOSTS = ['*']

# Add here your deployment HOSTS
CSRF_TRUSTED_ORIGINS = ['http://localhost:8000', 'http://localhost:5085']
CSRF_TRUSTED_ORIGINS = ['http://localhost:8000', 'http://localhost:5085', 'http://127.0.0.1:8000', 'http://127.0.0.1:5085']

RENDER_EXTERNAL_HOSTNAME = os.environ.get('RENDER_EXTERNAL_HOSTNAME')
if RENDER_EXTERNAL_HOSTNAME:
Expand Down
9 changes: 5 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
# Core
django==4.1.12
python-dotenv==1.0.0
django==4.2.9
python-dotenv==1.0.1
str2bool==1.1

# UI
django-theme-pixel==1.0.3

# Deployment
whitenoise==6.5.0
whitenoise==6.6.0
gunicorn==21.2.0

# psycopg2-binary
# mysqlclient
# mysqlclient

0 comments on commit 9d5f3db

Please sign in to comment.