Skip to content

Commit

Permalink
Release v1.0.5 - Bump Codebase Version
Browse files Browse the repository at this point in the history
  • Loading branch information
App Generator committed Dec 8, 2021
1 parent 2d7cdfa commit 802e9f1
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 42 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## [1.0.5] 2021-12-08
### Improvements

- Bump Django Codebase to [v1.0.8](https://github.com/app-generator/boilerplate-code-django/releases)

## [1.0.4] 2021-09-07
### Improvements & Fixes

Expand Down
71 changes: 33 additions & 38 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,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**
- UI Kit: **Pixel Lite** (Free Version) by **Themesberg**
- SQLite Database, Django Native ORM
- Modular design, clean codebase
- Session-Based Authentication, Forms validation
Expand All @@ -19,8 +19,7 @@ Open-Source **Django** starter coded with basic modules, database, ORM and deplo
> Links
- [Django Pixel Lite](https://appseed.us/django/django-pixel-bootstrap-uikit) - product page
- [Django Pixel Lite](https://django-pixel-lite.appseed-srv1.com/) - LIVE Deployment
- [Django Pixel Lite](https://docs.appseed.us/products/django-apps/pixel-lite) - product documentation
- [Django Pixel Lite](https://django-pixel.appseed-srv1.com/) - LIVE Deployment

<br />

Expand All @@ -29,16 +28,14 @@ Open-Source **Django** starter coded with basic modules, database, ORM and deplo
> Get the code
```bash
$ git clone https://github.com/app-generator/django-pixel-lite.git
$ cd django-pixel-lite
$ git clone https://github.com/app-generator/django-pixel.git
$ cd django-pixel
```

> Start the app in Docker
```bash
$ docker-compose pull # download dependencies
$ docker-compose build # local set up
$ docker-compose up -d # start the app
$ docker-compose up --build
```

Visit `http://localhost:85` in your browser. The app should be up & running.
Expand All @@ -53,8 +50,8 @@ Visit `http://localhost:85` in your browser. The app should be up & running.

```bash
$ # Get the code
$ git clone https://github.com/app-generator/django-pixel-lite.git
$ cd django-pixel-lite
$ git clone https://github.com/app-generator/django-pixel.git
$ cd django-pixel
$
$ # Virtualenv modules installation (Unix based systems)
$ virtualenv env
Expand Down Expand Up @@ -91,51 +88,49 @@ The project is coded using a simple and intuitive structure presented bellow:
```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, JS, images> # 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
|
|-- ************************************************************************
```
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "django-pixel-lite",
"name": "django-pixel",
"mastertemplate": "boilerplate-code-django",
"version": "1.0.4",
"version": "1.0.5",
"description": "Template project - Django Boilerplate Code",
"scripts": {},
"repository": {
"type": "git",
"url": "https://github.com/app-generator/django-pixel-lite"
"url": "https://github.com/app-generator/django-pixel"
},
"bugs": {
"url": "https://github.com/app-generator/django-pixel-lite/issues",
"url": "https://github.com/app-generator/django-pixel/issues",
"email": "support@appseed.us"
},
"author": "AppSeed App Generator <support@appseed.us> (https://appseed.us)",
Expand Down

0 comments on commit 802e9f1

Please sign in to comment.