Setup With Flask
Install Package
$ pip install Flask
$ mkdir example
$ cd example
Next, install package
$ pip install python-webpack-boilerplate
Create app.py
import os
from flask import Flask
app = Flask(__name__)
@app.cli.command("webpack_init")
def webpack_init():
from cookiecutter.main import cookiecutter
import webpack_boilerplate
pkg_path = os.path.dirname(webpack_boilerplate.__file__)
cookiecutter(pkg_path, directory="frontend_template")
Here we created a webpack_init
custom command to help us create frontend
project.
$ env FLASK_APP=app.py flask webpack_init
# here we use the default frontend slug
project_slug [frontend]:
Now a new frontend
directory is created which contains pre-defined files for our frontend project.
frontend
├── README.md
├── package-lock.json
├── package.json
├── postcss.config.js
├── src
├── vendors
└── webpack
Frontend
Note
If you have no nodejs installed, please install it first by using below links
- On nodejs homepage
- Using nvm I recommend this way.
$ node -v
v16.13.1
$ npm -v
8.1.2
Now go to frontend
# install dependency packages
$ npm install
# run webpack in watch mode
$ npm run watch
Note
run watch means webpack will watch source files and recompile whenever they change
The build files now can be found in frontend/build
directory
build
├── css
├── js
├── manifest.json
└── vendors
Note
You can check Frontend Workflow to learn more about frontend stuff
Config Flask
Update app.py
import os
from pathlib import Path
from flask import Flask, render_template
from webpack_boilerplate.config import setup_jinja2_ext
BASE_DIR = Path(__file__).parent
app = Flask(__name__, static_folder="frontend/build", static_url_path="/static/")
app.config.update({
'WEBPACK_LOADER': {
'MANIFEST_FILE': os.path.join(BASE_DIR, "frontend/build/manifest.json"),
}
})
setup_jinja2_ext(app)
@app.cli.command("webpack_init")
def webpack_init():
from cookiecutter.main import cookiecutter
import webpack_boilerplate
pkg_path = os.path.dirname(webpack_boilerplate.__file__)
cookiecutter(pkg_path, directory="frontend_template")
@app.route("/")
def hello():
return render_template('index.html')
- We add the above
frontend/build
tostatic_folder
so Flask can find the static assets (img, font and others) static_url_path
is set to/static/
- We add
MANIFEST_FILE
location to theWEBPACK_LOADER
so our custom loader can help us load JS and CSS. - Remember to run
setup_jinja2_ext(app)
so we can us custom template tag in Jinja2
Load the bundle files
Add index.html
to templates
├── app.py
├── frontend
└── templates
└── index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Index</title>
{{ stylesheet_pack('app') }}
</head>
<body>
<div class="jumbotron py-5">
<div class="container">
<h1 class="display-3">Hello, world!</h1>
<p>This is a template for a simple marketing or informational website. It includes a large callout called a
jumbotron and three supporting pieces of content. Use it as a starting point to create something more unique.</p>
<p><a class="btn btn-primary btn-lg" href="#" role="button">Learn more »</a></p>
<div class="d-flex justify-content-center">
<img src="{{ url_for('static', filename='vendors/images/webpack.png') }}" class="img-fluid"/>
</div>
</div>
</div>
{{ javascript_pack('app', 'app2', attrs='charset="UTF-8"') }}
</body>
</html>
Note
- You can import multiple entry files using one
javascript_pack
statement - The
javascript_pack
would also import dependency files automatically to handle code splitting - You can use
attrs
to set custom attributes
Manual Test
$ env FLASK_APP=app.py flask run
Now check on http://127.0.0.1:5000/ and you should be able to see a welcome page.
The source code can also be found in the Examples