flask black dashboard pro
v1.0.7
最新の Bootstrap 4 ダッシュボード テンプレートであるBlack Dashboard PROに加えて、 Flaskの AppSeed プラットフォームによって生成された管理者ダッシュボード。 Flask コードベースには、認証、データベース、ORM、およびデプロイメント スクリプトが付属しています。
特徴
Up-to-date dependencies
SCSS compilation
DBMS
: SQLite、PostgreSQL (本番)DB Tools
:SQLAlchemy ORM、Flask-Migrate(スキーマ移行)Blueprints
を使用したモジュラー設計製品ページからコードを取得します
$ unzip flask-dashboard-black-pro.zip
$ cd flask-dashboard-black-pro
Dockerでアプリを起動する
$ docker-compose up --build
ブラウザでhttp://localhost:5085
にアクセスします。アプリは起動して実行されているはずです。
$ # Get the code
$ git clone https://github.com/app-generator/priv-flask-dashboard-black-pro.git
$ cd priv-flask-dashboard-black-pro
$
$ # Virtualenv modules installation (Unix based systems)
$ virtualenv env
$ source env/bin/activate
$
$ # Virtualenv modules installation (Windows based systems)
$ # virtualenv env
$ # .envScriptsactivate
$
$ # Install modules - SQLite Database
$ pip3 install -r requirements.txt
$
$ # OR with PostgreSQL connector
$ # pip install -r requirements-pgsql.txt
$
$ # Set the FLASK_APP environment variable
$ (Unix/Mac) export FLASK_APP=run.py
$ (Windows) set FLASK_APP=run.py
$ (Powershell) $env :FLASK_APP = " .run.py "
$
$ # Set up the DEBUG environment
$ # (Unix/Mac) export FLASK_ENV=development
$ # (Windows) set FLASK_ENV=development
$ # (Powershell) $env:FLASK_ENV = "development"
$
$ # Start the application (development mode)
$ # --host=0.0.0.0 - expose the app on all network interfaces (default 127.0.0.1)
$ # --port=5000 - specify the app port (default 5000)
$ flask run --host=0.0.0.0 --port=5000
$
$ # Access the dashboard in browser: http://127.0.0.1:5000/
注: アプリを使用するには、登録ページにアクセスし、新しいユーザーを作成してください。認証後、アプリはプライベートページのロックを解除します。
プロジェクトは、ブループリント、アプリ ファクトリ パターン、デュアル構成プロファイル (開発と運用)、および以下に示す直感的な構造を使用してコード化されています。
< PROJECT ROOT >
|
| -- apps/
| |
| | -- home/ # A simple app that serve HTML files
| | | -- routes.py # Define app routes
| |
| | -- authentication/ # Handles auth routes (login and register)
| | | -- routes.py # Define authentication routes
| | | -- models.py # Defines models
| | | -- 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
| |
| config.py # Set up the app
| __init__.py # Initialize the app
|
| -- requirements.txt # Development modules - SQLite storage
| -- requirements-mysql.txt # Production modules - Mysql DMBS
| -- requirements-pqsql.txt # Production modules - PostgreSql DMBS
|
| -- Dockerfile # Deployment
| -- docker-compose.yml # Deployment
| -- gunicorn-cfg.py # Deployment
| -- nginx # Deployment
| | -- appseed-app.conf # Deployment
|
| -- .env # Inject Configuration via Environment
| -- run.py # Start the app - WSGI gateway
|
| -- ************************************************************************
ブートストラップの流れ
run.py
.env
ファイルをロードしますcreate_app
呼び出します。SCSS ファイルを再コンパイルするには、次の設定に従います。
ステップ #1 - ツールをインストールする
npm install -g gulp-cli
ステップ #2 - モジュールをインストールします (これにより、従来の
node_modules
ディレクトリが作成されます)
$ npm install
// OR
$ yarn
ステップ #3 - SCSS ファイルの編集と再コンパイル
$ gulp
生成されたファイルはapps/static/assets/css
ディレクトリに保存されます。
Flask Black PRO - AppSeed によって提供されます。