Skip to content

Commit

Permalink
Release v1.0.0 - STABLE version
Browse files Browse the repository at this point in the history
  • Loading branch information
app-generator committed Jan 24, 2023
1 parent 2692f92 commit 8c1ab44
Show file tree
Hide file tree
Showing 3 changed files with 194 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# CHANGELOG

## [1.0.0] 2023-01-24
### Changes

- STABLE Version
75 changes: 75 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
# Commercial Projects - EULA

Copyright (c) 2019 - present [AppSeed](http://appseed.us/)

<br />

## Licensing Information

This document explains the usage terms for all **commercial** products (apps/tools) developed by **[AppSeed](http://appseed.us/)**.

Used terms:

- `Solo-Developer`: code digital products as freelencer (without being incorporated in a company)
- `StartUp` - young company founded 12mo (or less) in the past
- `Small Company` - maximum 3 developers, active for more than 1year
- `Company` - More than 4 developers and less than 50
- `Corporate` - More than 50 developers

<br />

## [Personal License](https://github.com/app-generator/license-personal)

> Licensing Information - full info [here](https://github.com/app-generator/license-personal)
| Item | - |
| ---------------------------------- | --- |
| Domains | 1 |
| Team Size | **3 developer** |
| [Support](https://appseed.us/support/) & Updates: | **6 months** |
| --- | --- |
| Product sale ||
| Create single personal website/app ||
| Create single website/app for client ||
| Remove footer credits ||
| SaaS application ||

<br />

## [StartUp License](https://github.com/app-generator/license-startup)

> Licensing Information - full info [here](https://github.com/app-generator/license-startup)
| Item | - |
| ---------------------------------- | --- |
| Domains | 1 |
| Team Size | **Up to 9 developers** |
| [Support](https://appseed.us/support/) & Updates: | **12 months** |
| --- | --- |
| Product sale ||
| Create single personal website/app ||
| Create single website/app for client ||
| Remove footer credits ||
| SaaS application ||

<br />

## [Company License](https://github.com/app-generator/license-company)

> Licensing Information - full info [here](https://github.com/app-generator/license-company)
| Item | - |
| ---------------------------------- | --- |
| Team Size | **Unlimited** |
| [Support](https://appseed.us/support/) & Updates: | **Lifetime** |
| --- | --- |
| Product sale ||
| Create multiple personal websites/apps ||
| Create multiple websites/apps for clients ||
| Remove footer credits ||
| SaaS application ||

<br />

---
For more information regarding licensing, please contact the [AppSeed](https://appseed.us/) Service < *support@appseed.us* >
114 changes: 113 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,113 @@
# django-admin-black-pro
# **[Django Admin Black PRO](https://appseed.us/product/black-dashboard-pro/django/)**

**Django** starter styled with **[Django Admin Black PRO](https://appseed.us/product/black-dashboard-pro/django/)**, a premium `Bootstrap 5` design from [Creative-Tim](https://bit.ly/3fKQZaL).
The product is designed to deliver the best possible user experience with highly customizable feature-rich pages.

> 👉 **NOTE**: This product `requires a License` in order to access the theme:
**Private REPO**: `git+https://github.com/app-generator/priv-django-admin-black-pro`

<br />

## Features:

- **UI Kit**: Black Dashboard PRO `v1.1.2` by Creative-Tim
- [Django Black PRO](https://appseed.us/product/black-dashboard-pro/django/) - `sample project`
- **Sections Covered**:
- `Admin Section`, reserved for `superusers`
- `All pages` managed by `Django.contrib.AUTH`
- `Registration` page
- `Misc pages`: colors, icons, typography, blank-page

<br />

![Django Black PRO - Premium Seed project powered by Flask.](https://user-images.githubusercontent.com/51070104/187623954-c4ade6a0-8cb2-4d2e-8698-e962621a613c.png)

<br />

## Why `Django Admin Black PRO`

- Modern [Bootstrap](https://www.admin-dashboards.com/bootstrap-5-templates/) Design
- `Responsive Interface`
- `Minimal Template` overriding
- `Easy integration`

Designed for those who like bold elements and beautiful websites. Made of hundred of elements, designed blocks, and fully coded pages, **Soft UI Dashboard PRO** is ready to help you create stunning websites and web apps.

<br />

## How to use it

<br />

> **Install the package** via `PIP`
```bash
$ pip install git+https://github.com/app-generator/priv-django-admin-black-pro.git
```

<br />

> Add `admin_black_pro` application to the `INSTALLED_APPS` setting of your Django project `settings.py` file (note it should be before `django.contrib.admin`):
```python
INSTALLED_APPS = (
...
'admin_black_pro.apps.AdminBlackProConfig',
'django.contrib.admin',
)
```

<br />

> Add `LOGIN_REDIRECT_URL` and `EMAIL_BACKEND` of your Django project `settings.py` file:
```python
LOGIN_REDIRECT_URL = '/'
# EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
```

<br />

> Add `admin_black_pro` urls in your Django Project `urls.py` file
```python
from django.urls import path, include

urlpatterns = [
...
path('', include('admin_black_pro.urls')),
]
```

<br />

> **Collect static** if you are in `production environment`:
```bash
$ python manage.py collectstatic
```

<br />

> **Start the app**
```bash
$ # Set up the database
$ python manage.py makemigrations
$ python manage.py migrate
$
$ # Create the superuser
$ python manage.py createsuperuser
$
$ # Start the application (development mode)
$ python manage.py runserver # default port 8000
```

Access the `admin` section in the browser: `http://127.0.0.1:8000/`

<br />

---
**[Django Admin Black PRO](https://appseed.us/product/black-dashboard-pro/django/)** - Modern `Admin Interface` provided by **[AppSeed](https://appseed.us/)**.

0 comments on commit 8c1ab44

Please sign in to comment.