Skip to content

Latest commit

 

History

History
44 lines (27 loc) · 778 Bytes

File metadata and controls

44 lines (27 loc) · 778 Bytes

headless blog

An example headless blog, built with FastAPI and Piccolo.

Includes an admin GUI:

Admin

And an interactive API:

FastAPI

Trying it out

Install requirements:

pip install -r requirements.txt

Make sure a Postgres database exists with the name piccolo_headless_blog (see piccolo_conf.py for the connection details).

Run the migrations:

piccolo migrations forwards all

Create an admin user:

piccolo user create

Start the web server:

python main.py

Now you have a headless blog!