mirror of https://github.com/tiyn/beaker-blog
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
521 B
24 lines
521 B
# Python Flask Blog
|
|
|
|
This is a simple blog based on Pythons Flask framework.
|
|
|
|
## Deployment
|
|
|
|
- `pip3 install requirements.txt` - install depenencies
|
|
- run `python app.py`
|
|
- blog is available on port 5000
|
|
|
|
### Create entries
|
|
|
|
Blog entries are managed by plain html files in the `templates/entry/` directory.
|
|
The first line of each document is reserved as the title of the document.
|
|
You have to specify the filetype by extension.
|
|
|
|
Currently supported filetypes are:
|
|
- HTML (.html)
|
|
- Markdown (.md)
|
|
|
|
## To-Do
|
|
|
|
- CSS upgrade
|