A blog system based on plain-files.
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.

23 lines
521 B

7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
  1. # Python Flask Blog
  2. This is a simple blog based on Pythons Flask framework.
  3. ## Deployment
  4. - `pip3 install requirements.txt` - install depenencies
  5. - run `python app.py`
  6. - blog is available on port 5000
  7. ### Create entries
  8. Blog entries are managed by plain html files in the `templates/entry/` directory.
  9. The first line of each document is reserved as the title of the document.
  10. You have to specify the filetype by extension.
  11. Currently supported filetypes are:
  12. - HTML (.html)
  13. - Markdown (.md)
  14. ## To-Do
  15. - CSS upgrade