django volt dashboard pro2
v1.0.12
최신 Bootstrap 대시보드 디자인인 Volt Dashboard PRO(프리미엄 버전) 위에 기본 모듈, 데이터베이스, ORM 및 배포 스크립트로 코딩된 Django 대시보드입니다 . Volt Pro는 800개가 넘는 구성요소, 20개의 예제 페이지, 바닐라 자바스크립트로 작성된 10개의 완전히 사용자 정의된 플러그인을 갖춘 프리미엄 Bootstrap 5 관리 대시보드입니다.
Product pageLIVE DemoLearn how to use and update the product기본 버전
Up-to-date dependencies , 활성 버전 관리Session-Based authenticationDocker확장 버전
AuthenticationTask ModuleTransactions ModuleUsers ManagementExtended user profileAdmins 용)
1단계 - 코드를 다운로드하고 소스의 압축을 풉니다(
purchase필요).
$ # Get the code
$ unzip django-volt-dashboard-pro.zip
$ cd django-volt-dashboard-pro2단계 -
Docker에서 앱 시작
$ docker-compose up --build 브라우저에서 http://localhost:5085 방문하세요. 앱이 실행 중이어야 합니다.
코드를 다운로드하고 소스의 압축을 풉니다(
purchase필요).
$ # Get the code
$ unzip django-volt-dashboard-pro.zip
$ cd django-volt-dashboard-proUnix , MacOS 용 설정
VENV통해 모듈 설치
$ virtualenv env
$ source env/bin/activate
$ pip3 install -r requirements.txt데이터베이스 설정
$ python manage.py makemigrations
$ python manage.py migrate앱 시작
$ python manage.py runserver 이 시점에서 앱은 http://127.0.0.1:8000/ 에서 실행됩니다.
Windows 용 설정
VENV를 통해 모듈 설치(Windows)
$ virtualenv env
$ .envScriptsactivate
$ pip3 install -r requirements.txt
데이터베이스 설정
$ python manage.py makemigrations
$ python manage.py migrate앱 시작
$ python manage.py runserver 이 시점에서 앱은 http://127.0.0.1:8000/ 에서 실행됩니다.
기본적으로 앱은 인증을 위해 게스트 사용자를 리디렉션합니다. 비공개 페이지에 액세스하려면 다음 설정을 따르세요.
flask run 통해 앱 시작registration 페이지에 액세스하여 새 사용자를 만듭니다.http://127.0.0.1:8000/register/sign in 접속하여 인증하세요.http://127.0.0.1:8000/login/프로젝트는 아래와 같이 간단하고 직관적인 구조를 사용하여 코딩됩니다.
< 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
| | -- page-404.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
|
| -- ************************************************************************Django Volt Dashboard PRO - AppSeed Generator 로 생성된 시드 프로젝트입니다.