Django ダッシュボードは、最新の Bootstrap ダッシュボード デザインである Volt Dashboard PRO (プレミアム バージョン) 上で基本モジュール、データベース、ORM、およびデプロイメント スクリプトを使用してコーディングされています。 Volt Pro は、800 を超えるコンポーネント、20 のサンプル ページ、および Vanilla Javascript で記述された 10 の完全にカスタマイズされたプラグインを備えたプレミアム Bootstrap 5 管理ダッシュボードです。
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によって生成された Seed プロジェクト。