Skip to content

Commit

Permalink
Release v1.0.15
Browse files Browse the repository at this point in the history
  • Loading branch information
app-generator committed Mar 4, 2024
1 parent 7af347d commit 680e36c
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 16 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Change Log

## [1.0.15] 2024-03-02
### Changes

- Deprecate `distutils`
- use `str2bool`
- Update Deps
- `requirements.txt`
- Update README: [PRO Version](https://appseed.us/product/black-dashboard-pro/django/), List features
- `API`, **Charts**
- **DataTables** (Filters, Export)
- **Celery**
- **Media Files Manager**
- **Extended User Profiles**

## [1.0.14] 2023-02-14
### Changes

Expand Down
22 changes: 13 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,19 @@ The product is designed to deliver the best possible user experience with highly
| Free Version | [PRO Version](https://appseed.us/product/black-dashboard-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` |**Team**: PM, Developer, Tester |
|`Docker` |**PRO Support** - [Email & Discord](https://appseed.us/support/) | ✅ Weekly Sprints |
|`CI/CD` Flow via Render | ✅ Deployment Assistance | ✅ Technical SPECS |
| ✓ `Free Support | - | ✅ Documentation |
| - | - |**30 days Delivery Warranty** |
| ------------------------------------ | ------------------------------------ | ------------------------------------|
|[LIVE Demo](https://django-black-dashboard.appseed-srv1.com/) | 🚀 [LIVE Demo](https://django-black-dashboard-pro.appseed-srv1.com/) | 🛒 `Order`: **[$4,999](https://appseed.gumroad.com/l/rocket-package)** (GUMROAD) |
|**Django 4.2.9** | **Everything in Free**, plus: | **Everything in PRO**, plus: |
| ✓ Best Practices |**Premium Bootstrap 5 Design** |**1mo Custom Development** |
| ✓ Bootstrap 5, `Material` Design |`OAuth` Google, GitHub |**Team**: PM, Developer, Tester |
|`CI/CD` Flow via Render |`API`, **[Charts](https://django-black-pro.onrender.com/charts/)** | ✅ Weekly Sprints |
|`Docker` |**[DataTables](https://django-black-pro.onrender.com/tables/)** (Filters, Export) | ✅ Technical SPECS |
| - |**Celery** | ✅ Documentation |
| - |**Media Files Manager** |**30 days Delivery Warranty** |
| - |**Extended User Profiles** | - |
| - |`Private REPO Access` | - |
| - |**PRO Support** - [Email & Discord](https://appseed.us/support/) | - |
| - | ✅ Deployment Assistance | - |
| ------------------------------------ | ------------------------------------ | ------------------------------------|
|[LIVE Demo](https://django-material-dash2.onrender.com) | 🚀 [LIVE Demo](https://django-black-pro.onrender.com/) | 🛒 `Order`: **[$4,999](https://appseed.gumroad.com/l/rocket-package)** (GUMROAD) |


![Django Admin Black - Template project for Django provided by AppSeed.](https://user-images.githubusercontent.com/51070104/196730732-dda1794b-93ce-48cb-bc5c-182411495512.png)
Expand Down
8 changes: 5 additions & 3 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,11 +28,12 @@
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', '127.0.0.1']
ALLOWED_HOSTS = ['*']

# Add here your deployment HOSTS
CSRF_TRUSTED_ORIGINS = ['http://localhost:8000', 'http://localhost:5085', 'http://127.0.0.1:8000', 'http://127.0.0.1:5085']
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,14 +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-admin-black==1.0.8

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

# DB Layer
# psycopg2-binary
# mysqlclient

0 comments on commit 680e36c

Please sign in to comment.