Skip to content

Commit

Permalink
Release v1.0.4 - Bump Codebase + Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
App Generator committed Sep 10, 2021
1 parent 159c20d commit e46414a
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 11 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
22 changes: 12 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
|
Expand Down Expand Up @@ -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.

<br />

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down

0 comments on commit e46414a

Please sign in to comment.