Skip to content

Commit fa0b5c8

Browse files
committed
Release v1.0.0 - Bump Codebase, UI & Render Deployment
1 parent c2a5708 commit fa0b5c8

File tree

5 files changed

+18
-50
lines changed

5 files changed

+18
-50
lines changed

CHANGELOG.md

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,8 @@
11
# Change Log
22

3-
## [1.0.1] 2022-12-21
4-
### Changes
5-
6-
- DOCS Update
7-
- Fix Render Deployment
8-
9-
## [1.0.0] 2022-12-20
10-
### Changes
3+
## [1.0.0] 2022-12-21
4+
### Initial Release
115

126
- Deployment-ready for Render
137
- `render.yaml`
14-
- Tested for [Django Berry PRO](https://github.com/app-generator/django-admin-berry-pro) `v1.0.0`
15-
16-
## [0.0.1] 2022-11-17
17-
### Initial Release
18-
19-
- Integrate [Django Berry PRO](https://github.com/app-generator/django-admin-berry-pro)
8+
- Integrate [Django Berry](https://github.com/app-generator/django-admin-berry)

README.md

Lines changed: 12 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,15 @@
1-
# [Django Berry PRO](https://github.com/app-generator/django-berry-dashboard-pro) `Starter`
1+
# [Django Berry Dashboard](https://blog.appseed.us/django-berry-bootstrap-5-free/)
22

3-
**Django** starter styled with **Berry Dashboard PRO**, a premium `Boostrap 5` design from [CodedThemes](https://codedthemes.com/?ref=appseed)
4-
The product is designed to deliver the best possible user experience with highly customizable feature-rich pages.
3+
Open-source **Django** project crafted on top of **Berry Dashboard**, an open-source `Boostrap 5` design from [CodedThemes](https://codedthemes.com/?ref=appseed)
4+
The product is designed to deliver the best possible user experience with highly customizable feature-rich pages. `Berry` has easy and intuitive responsive design whether it is viewed on retina screens or laptops.
55

6-
> 👉 **NOTE**: This product `requires a License` in order to access the theme. During the purchase, a
7-
8-
9-
<br />
10-
11-
## Features:
6+
> Features:
127
138
-`Up-to-date Dependencies`
14-
-`Design`: [Django Theme Berry](https://github.com/app-generator/django-admin-berry-pro) - `PRO Version`
15-
-`Sections` covered by the design:
16-
-**Admin section** (reserved for superusers)
17-
-**Authentication**: `Django.contrib.AUTH`, Registration
18-
-**All Pages** available in for ordinary users
19-
-`Deployment-Ready` for Render
20-
- 🚀 [Support](https://appseed.us/support/) via `Email` & `Discord`
9+
- ✅ Theme: [Django Admin Berry](https://github.com/app-generator/django-admin-berry)
10+
-`Docker`
11+
-**Authentication**: `Django.contrib.AUTH`, Registration
12+
- 🚀 Free [Support](https://appseed.us/support/) via `Email` & `Discord`
2113

2214
<br />
2315

@@ -30,26 +22,13 @@ The product is designed to deliver the best possible user experience with highly
3022
> 👉 Download the code
3123
3224
```bash
33-
$ git clone https://github.com/app-generator/django-berry-dashboard-pro.git
34-
$ cd django-berry-dashboard-pro
35-
```
36-
37-
<br />
38-
39-
> Export `GITHUB_TOKEN` in the environment. The value is provided by AppSeed during purchase.
40-
41-
This is required because the project has a private REPO dependency: `github.com/app-generator/priv-django-admin-berry-pro`
42-
43-
```bash
44-
$ export GITHUB_TOKEN='TOKEN_HERE' # for Linux, Mac
45-
$ set GITHUB_TOKEN='TOKEN_HERE' # Windows CMD
46-
$ $env:GITHUB_TOKEN = 'TOKEN_HERE' # Windows powerShell
25+
$ git clone https://github.com/app-generator/django-berry-dashboard.git
26+
$ cd django-berry-dashboard
4727
```
4828

4929
<br />
5030

51-
> 👉 Install modules via `VENV`.
52-
31+
> 👉 Install modules via `VENV`
5332
5433
```bash
5534
$ virtualenv env
@@ -116,4 +95,4 @@ At this point, the app runs at `http://127.0.0.1:8000/`.
11695
<br />
11796

11897
---
119-
[Django Berry Dashboard](https://github.com/app-generator/django-berry-dashboard-pro) - Minimal **Django** starter provided by **[AppSeed](https://appseed.us/)**
98+
[Django Berry Dashboard](https://blog.appseed.us/django-berry-bootstrap-5-free/) - Minimal **Django** starter provided by **[AppSeed](https://appseed.us/)**

core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
# Application definition
4040

4141
INSTALLED_APPS = [
42-
'admin_berry_pro.apps.AdminBerryProConfig',
42+
'admin_berry.apps.AdminBerryConfig',
4343
"django.contrib.admin",
4444
"django.contrib.auth",
4545
"django.contrib.contenttypes",

core/urls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@
1919
urlpatterns = [
2020
path('', include('home.urls')),
2121
path("admin/", admin.site.urls),
22-
path("", include('admin_berry_pro.urls'))
22+
path("", include('admin_berry.urls'))
2323
]

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ django
22
gunicorn
33
python-dotenv
44
whitenoise
5-
git+https://${GITHUB_TOKEN}@github.com/app-generator/priv-django-admin-berry-pro
5+
django-admin-berry==1.0.3
66

77
# psycopg2-binary
88
# mysqlclient

0 commit comments

Comments
 (0)