django materialpro lite
v1.0.2
최신 Bootstrap 대시보드 디자인인 MaterialPro Bootstrap Lite를 기반으로 기본 모듈, 데이터베이스, ORM 및 배포 스크립트로 코딩된 오픈 소스 Django 대시보드입니다 . WrapPixel의 MaterialPro Bootstrap Lite 는 관리 대시보드 및 제어 관리 패널을 위한 최고의 Bootstrap 템플릿 중 하나입니다. 이 강력하고 유능한 Bootstrap 4 관리 템플릿은 HTML을 기반으로 하며 CSS 프레임워크로 구축되었습니다.
앱 생성기로 구축됨, 타임스탬프:
2022-09-18 07:49
Up-to-date dependencies
SQLite Database
, Django 기본 ORMSession-Based authentication
, 양식 유효성 검사Deployment
: Docker , Gunicorn / Nginx, HEROKUDocker
의 빠른 시작1단계 - GH 저장소에서 코드 다운로드(
GIT
사용)
$ git clone https://github.com/app-generator/django-materialpro-lite.git
$ cd django-materialpro-lite
2단계 -
Docker
에서 앱 시작
$ docker-compose up --build
브라우저에서 http://localhost:5085
방문하세요. 앱이 실행 중이어야 합니다.
$ # Get the code
$ git clone https://github.com/app-generator/django-materialpro-lite.git
$ cd django-materialpro-lite
$
$ # Virtualenv modules installation (Unix based systems)
$ virtualenv env
$ source env/bin/activate
$
$ # Virtualenv modules installation (Windows based systems)
$ # virtualenv env
$ # .envScriptsactivate
$
$ # Install modules - SQLite Storage
$ pip3 install -r requirements.txt
$
$ # Create tables
$ python manage.py makemigrations
$ python manage.py migrate
$
$ # Start the application (development mode)
$ python manage.py runserver # default port 8000
$
$ # Start the app - custom port
$ # python manage.py runserver 0.0.0.0:<your_port>
$
$ # Access the web app in browser: http://127.0.0.1:8000/
참고: 앱을 사용하려면 등록 페이지에 접속하여 새 사용자를 생성하세요. 인증 후 앱은 비공개 페이지의 잠금을 해제합니다.
프로젝트는 아래와 같이 간단하고 직관적인 구조를 사용하여 코딩되었습니다.
< PROJECT ROOT >
|
| -- 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
| |
| | -- accounts/ # Authentication pages
| | | -- login.html # Login page
| | | -- register.html # Register page
| |
| | -- home/ # UI Kit Pages
| | -- index.html # Index page
| | -- 404-page.html # 404 page
| | -- * .html # All other pages
|
| -- requirements.txt # Development modules - SQLite storage
|
| -- .env # Inject Configuration via Environment
| -- manage.py # Start the app - Django default start script
|
| -- ************************************************************************
부트스트랩 흐름
manage.py
core/settings.py
기본 구성 파일로 사용합니다.core/settings.py
.env
파일에서 앱 매직을 로드합니다.Django Material Lite - AppSeed 앱 생성기에서 제공됩니다.