From e46414a3541f506bc215fe4e3e03dcf8839ca8a5 Mon Sep 17 00:00:00 2001 From: App Generator Date: Fri, 10 Sep 2021 17:28:03 +0300 Subject: [PATCH] Release v1.0.4 - Bump Codebase + Fixes --- CHANGELOG.md | 14 ++++++++++++++ README.md | 22 ++++++++++++---------- package.json | 2 +- 3 files changed, 27 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 84872a1a..8a8439c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Change Log +## [1.0.4] 2021-09-07 +### Improvements & Fixes + +- Bump Django Codebase to [v1.0.5](https://github.com/app-generator/boilerplate-code-django/releases) + - Dependencies update (all packages) + - Use Django==3.2.6 (latest stable version) + - Better Code formatting + - Improved Files organization + - Optimize imports + - Docker Scripts Update +- Fixes: + - Patch 500 Error when authenticated users access `admin` path (no slash at the end) + - Patch [#16](https://github.com/app-generator/boilerplate-code-django-dashboard/issues/16): Minor issue in Docker + ## [1.0.3] 2021-07-18 ### Tooling diff --git a/README.md b/README.md index d00ecc27..77d93410 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,7 @@ Open-Source **Django** starter coded with basic modules, database, ORM and deplo > Features +- Up-to-date [dependencies](./requirements.txt): **Django 3.2.6 LTS** - UI Kit: **[Pixel Lite](https://docs.appseed.us/content/bootstrap-template/pixel-lite-template)** (Free Version) by **Themesberg** - SQLite Database, Django Native ORM - Modular design, clean codebase @@ -98,16 +99,17 @@ The project is coded using a simple and intuitive structure presented bellow: | page-500.html # Error 404 page | *.html # All other HTML pages | - |-- authentication/ # Handles auth routes (login and register) + |-- apps/ + | |-- authentication/ # Handles auth routes (login and register) + | | | + | | |-- urls.py # Define authentication routes + | | |-- views.py # Handles login and registration + | | |-- forms.py # Define auth forms | | - | |-- urls.py # Define authentication routes - | |-- views.py # Handles login and registration - | |-- forms.py # Define auth forms - | - |-- app/ # A simple app that serve HTML files - | | - | |-- views.py # Serve HTML pages for authenticated users - | |-- urls.py # Define some super simple routes + | |-- app/ # A simple app that serve HTML files + | | + | |-- views.py # Serve HTML pages for authenticated users + | |-- urls.py # Define some super simple routes | |-- requirements.txt # Development modules - SQLite storage | @@ -193,7 +195,7 @@ $ cd django-pixel-lite $ sudo docker-compose pull && sudo docker-compose build && sudo docker-compose up -d ``` -Visit `http://localhost:5005` in your browser. The app should be up & running. +Visit `http://localhost:85` in your browser. The app should be up & running.
diff --git a/package.json b/package.json index c78c2af1..9a3d8316 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "django-pixel-lite", "mastertemplate": "boilerplate-code-django", - "version": "1.0.3", + "version": "1.0.4", "description": "Template project - Django Boilerplate Code", "scripts": {}, "repository": {