0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【個人的メモ】Wagtail、webpack をインストール

Posted at

すいません!超個人的メモです

Ubuntu 19.04

Wagtail

pip install wagtail
mkdir PROJECTNAME
cd PROJECTNAME
wagtail start MYSITE .

webpack

django-webpack-loader のセットアップ

npm init -y
npm install --save-dev webpack webpack-cli webpack-bundle-tracker

webpack.config.jsを作成して編集

touch webpack.config.js
webapck.config.js
var path = require("path")
var webpack = require('webpack')
var BundleTracker = require('webpack-bundle-tracker')

module.exports = {
  mode: 'development',
  context: __dirname,
  entry: {
      // pass
  },

  output: {
      path: path.resolve('./assets/bundles/'),
      filename: "[name]-[hash].js",
  },

  plugins: [
    new BundleTracker({filename: './webpack-stats.json'}),
  ],

  module: {
    rules: [
      // pass
    ]
  }
}

webpackの入出力に必要なフォルダの作成

mkdir -p assets/js
mkdir assets/css
mkdir assets/bundles

Bulma

動作確認も含めてBulmaをインストールしてみます

webpackでBulmaを使いたい

npm install --save-dev node-sass sass fibers
npm install --save-dev style-loader css-loader postcss-loader precss autoprefixer sass-loader
npm install --save-dev bulma
webpack.config.js
...

  entry: {
    main_css: './assets/css/main.scss',
  },

...

  module: {
    rules: [
      {
        test: /\.(scss)$/,
        use: [{
          loader: 'style-loader',
        }, {
          loader: 'css-loader',
        }, {
          loader: 'postcss-loader',
          options: {
            plugins: function () {
              return [
                require('precss'),
                require('autoprefixer')
              ];
            }
          }
        }, {
          loader: 'sass-loader'
        }]
      }
    ]
  }
...
assets/css/main.scss
@charset "utf-8";
@import "~bulma/bulma";

django-webpack-loader

再び、django-webpack-loader のセットアップ

pip install django-webpack-loader
MYSITE/settings/base.py
...

INSTALLED_APPS = (
 ...
 'webpack_loader',
)

...

STATICFILES_DIRS = (
    ...
    os.path.join(BASE_DIR, 'assets'),
)

...
# 下記4行は必要ありません
try:
    DEBUG
except NameError:
    DEBUG = True

WEBPACK_LOADER = {
    'DEFAULT': {
        'CACHE': not DEBUG,
        'BUNDLE_DIR_NAME': 'bundles/',
        'STATS_FILE': os.path.join(BASE_DIR, './webpack-stats.json'),
        'POLL_INTERVAL': 0.1,
        'TIMEOUT': None,
        'IGNORE': [r'.+\.hot-update.js', r'.+\.map'],
    }
}

watchモードでバンドル

./node_modules/.bin/webpack --config webpack.config.js --watch
home/templates/home/home_page.html
{% extends "base.html" %}
{% load static %}
{% load wagtailcore_tags wagtailimages_tags %}
{% load render_bundle from webpack_loader %}

{% block body_class %}homepage{% endblock %}

{% block extra_css %}
{% render_bundle 'main_css' %}
{% endblock extra_css %}

{% block content %}
<section class="section">
  <div class="container">
    <h1 class="title">
      個人的メモ
    </h1>
    <p class="subtitle">
    <strong>備忘のために</strong>書きました
    </p>
  </div>
</section>
{% endblock content %}

{% block extra_js %}
{% endblock %}

Screenshot from 2019-10-24 00-05-27.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?