Browse Source

update readme

master
TiynGER 7 months ago
parent
commit
c957beebc8
1 changed files with 16 additions and 16 deletions
  1. +16
    -16
      README.md

+ 16
- 16
README.md

@ -2,6 +2,22 @@
This is a simple blog based on Pythons Flask framework. This is a simple blog based on Pythons Flask framework.
## Usage
### 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
## Deployment ## Deployment
### PIP/Python ### PIP/Python
@ -32,19 +48,3 @@ Set the following ports with the -p tag.
#### Example run-command #### Example run-command
`docker run --name blog --restart unless-stopped -v css:/blog/src/static/css -v html:/blog/src/templates -p 80:5000 -d tiynger/flaskblog` `docker run --name blog --restart unless-stopped -v css:/blog/src/static/css -v html:/blog/src/templates -p 80:5000 -d tiynger/flaskblog`
## Usage
### 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

Loading…
Cancel
Save