django volt dashboard pro2
v1.0.12
Django Dashboard在 Volt Dashboard PRO(高级版)(一种现代 Bootstrap 仪表板设计)之上使用基本模块、数据库、ORM 和部署脚本进行编码。 Volt Pro 是一款高级 Bootstrap 5 管理仪表板,具有 800 多个组件、20 个示例页面和 10 个用 Vanilla Javascript 编写的完全自定义插件。
Product page
LIVE Demo
Learn how to use and update the product
基础版
Up-to-date dependencies
、活动版本控制Session-Based authentication
Docker
加长版
Authentication
Task Module
Transactions Module
Users Management
Extended user profile
Admins
)第 1 步- 下载代码并解压源代码(需要
purchase
)。
$ # Get the code
$ unzip django-volt-dashboard-pro.zip
$ cd django-volt-dashboard-pro
第2步-在
Docker
中启动应用程序
$ docker-compose up --build
在浏览器中访问http://localhost:5085
。该应用程序应该已启动并正在运行。
下载代码并解压缩源代码(需要
purchase
)。
$ # Get the code
$ unzip django-volt-dashboard-pro.zip
$ cd django-volt-dashboard-pro
Unix
, 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生成的种子项目。