Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

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!