From 8fc1114963390fb89f7e6979322d72716ee8bbb1 Mon Sep 17 00:00:00 2001 From: App Generator Date: Tue, 12 Oct 2021 10:34:42 +0300 Subject: [PATCH] Release v1.0.3 - Bump Django Codebase --- CHANGELOG.md | 8 ++++++++ README.md | 54 +++++++++++++++++++++++++--------------------------- package.json | 2 +- 3 files changed, 35 insertions(+), 29 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9442b90..116eb33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## [1.0.3] 2021-10-12 +### Improvements + +- Bump Django Codebase to [v2.0.4](https://github.com/app-generator/boilerplate-code-django-dashboard/releases) +- Codebase update + - `assets` & `templates` moved to `apps` folder + - `apps/base` renamed to `apps/home` + ## [1.0.2] 2021-09-12 ### Improvements & Fixes diff --git a/README.md b/README.md index 42dfe15..8b61932 100644 --- a/README.md +++ b/README.md @@ -81,51 +81,49 @@ The project is coded using a simple and intuitive structure presented below: ```bash < PROJECT ROOT > | - |-- core/ # Implements app logic and serve the static assets - | |-- settings.py # Django app bootstrapper + |-- core/ # Implements app configuration + | |-- settings.py # Defines Global Settings | |-- wsgi.py # Start the app in production | |-- urls.py # Define URLs served by all apps/nodes + | + |-- apps/ + | | + | |-- home/ # A simple app that serve HTML files + | | |-- views.py # Serve HTML pages for authenticated users + | | |-- urls.py # Define some super simple routes + | | + | |-- authentication/ # Handles auth routes (login and register) + | | |-- urls.py # Define authentication routes + | | |-- views.py # Handles login and registration + | | |-- forms.py # Define auth forms (login and register) | | | |-- static/ | | |-- # CSS files, Javascripts files | | | |-- templates/ # Templates used to render pages - | | | |-- includes/ # HTML chunks and components | | |-- navigation.html # Top menu component | | |-- sidebar.html # Sidebar component | | |-- footer.html # App Footer | | |-- scripts.html # Scripts common to all pages | | - | |-- layouts/ # Master pages - | | |-- base-fullscreen.html # Used by Authentication pages - | | |-- base.html # Used by common pages + | |-- layouts/ # Master pages + | | |-- base-fullscreen.html # Used by Authentication pages + | | |-- base.html # Used by common pages | | - | |-- accounts/ # Authentication pages - | | |-- login.html # Login page - | | |-- register.html # Register page - | | - | index.html # The default page - | page-404.html # Error 404 page - | page-500.html # Error 404 page - | *.html # All other HTML pages - | - |-- apps/ - | |-- authentication/ # Handles auth routes (login and register) - | | | - | | |-- urls.py # Define authentication routes - | | |-- views.py # Handles login and registration - | | |-- forms.py # Define auth forms - | | - | |-- app/ # A simple app that serve HTML files + | |-- accounts/ # Authentication pages + | | |-- login.html # Login page + | | |-- register.html # Register page | | - | |-- views.py # Serve HTML pages for authenticated users - | |-- urls.py # Define some super simple routes + | |-- home/ # UI Kit Pages + | |-- index.html # Index page + | |-- 404-page.html # 404 page + | |-- *.html # All other pages | - |-- requirements.txt # Development modules - SQLite storage + |-- requirements.txt # Development modules - SQLite storage | - |-- .env # Inject Configuration via Environment - |-- manage.py # Start the app - Django default start script + |-- .env # Inject Configuration via Environment + |-- manage.py # Start the app - Django default start script | |-- ************************************************************************ ``` diff --git a/package.json b/package.json index 5be9e11..722eb5c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "django-dashboard-atlantis-dark", "mastertemplate": "boilerplate-code-django-dashboard", - "version": "1.0.2", + "version": "1.0.3", "description": "Template project - Django Boilerplate Code", "scripts": {}, "repository": {