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 1 year has passed since last update.

PythonのWebフレームワークMasoniteをdockerで初めの一歩

Last updated at Posted at 2022-05-29

出会い

以下の素敵な記事を見ていたら、何だか気になるアイコンのWebフレームワークが。

キミの名は

Masonite
masonite.png

メゾナイトと読むのでしょうか。
何だか分かりませんが、アイコンに親近感が湧きます。
イナズマンっぽいから?

とりあえず動かしてみる

# ホスト側
docker run -it -p 80:8000 python:3.10-slim-bullseye /bin/bash

# コンテナ内
pip install masonite
mkdir ~/masonite
cd ~/masonite
project start .
python craft serve -b 0.0.0.0

localhostにアクセスすると、以下のような画面が表示される。

スクリーンショット 2022-05-29 13.13.39.png

そして、別れ

Qiitaで調べると、Laravelっぽいとあります。
普段業務でLaravelを使う事が多いので、少しPython学習がてら勉強してみようと思ったのです。

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?