Skip to content

Commit

Permalink
Release v1.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
app-generator committed Mar 7, 2024
1 parent 32ebae6 commit 411ce00
Show file tree
Hide file tree
Showing 6 changed files with 48 additions and 20 deletions.
3 changes: 3 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
DEBUG=True

SECRET_KEY=<STRONG_KEY_HERE>
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ env
/staticfiles/

#src
*.sqlite*
#*.sqlite*

.env
#.env
node_modules
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.8] 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.7] 2023-02-08
### Changes

Expand Down
26 changes: 16 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,25 @@ The product is designed to deliver the best possible user experience with highly

- 👉 [Django Material Kit](https://appseed.us/product/material-kit/django/) - `Product page`
- 👉 [Django Material Kit](https://django-material-kit.appseed-srv1.com/) - `LIVE Demo`
- 🛒 **[Django Material Kit PRO](https://appseed.us/product/material-kit2-pro/django/)** - `Premium Version`

<br />

> Features:
-`Up-to-date Dependencies`
- ✅ Theme: [Django Theme Material Kit](https://github.com/app-generator/django-theme-material-kit), **designed by [Creative-Tim](https://www.creative-tim.com/product/material-kit?AFFILIATE=128200)**
-**Authentication**: `Django.contrib.AUTH`, Registration
- 🚀 `Deployment`
- `CI/CD` flow via `Render`

<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 Development](https://appseed.us/custom-development/) |
| --------------------------------------| --------------------------------------| --------------------------------------|
|**Django 4.2.9** | **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-material-kit.appseed-srv1.com/) | 🚀 [LIVE Demo](https://django-material-kit2-enh.appseed-srv1.com) | 🛒 `Order`: **[$3,999](https://appseed.gumroad.com/l/rocket-package)** (GUMROAD) |

![Material Kit - Starter generated by AppSeed.](https://user-images.githubusercontent.com/51070104/167396765-c88b7a95-155f-4236-8691-7b80fa2d9cd9.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
14 changes: 10 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
django
gunicorn
python-dotenv
whitenoise
# Core
django==4.2.9
python-dotenv==1.0.1
str2bool==1.1

# UI
django-theme-material-kit==1.0.19

# Deployment
whitenoise==6.6.0
gunicorn==21.2.0

# psycopg2-binary
# mysqlclient

0 comments on commit 411ce00

Please sign in to comment.