adding requirements and readme

dependabot/pip/src/flask-2.3.2
TiynGER 5 years ago
parent d4f9dbeb2e
commit c5577ce69b

@ -0,0 +1,17 @@
# Python Flask Blog
This is a blog based on Pythons Flask framework.
## Installation
- `pip3 install requirements.txt` - install depenencies
## Usage
- 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.

@ -0,0 +1 @@
Flask==1.1.2

@ -1,6 +1,7 @@
<html>
<head>
<title>{{ title }}</title>
<link href="{{ url_for('static', filename='css/style.css') }}" rel="stylesheet" type="text/css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width", initial-scale=1.0>
</head>

Loading…
Cancel
Save