Skip to content

Eine html-ausgabe mit fortlaufender uhrzeit und aktiver pausen-anzeige

Notifications You must be signed in to change notification settings

cbwham/training-flask-pause-html

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flask

Flask is a Python micro framework for building web applications.

Local Development

Requirements

  • terminal
  • git
  • python3

How get this running

  • Clone this repository
  • Change directory
  • Create new virtualenv
  • Activate virtualenv
  • Install required Python packages (into the virtualenv)
  • Run Flask application
  • Access service via HTTP
  • Fun&Freizeit

Examples

Windows

git clone https://github.com/cbwham/training-flask-pause-html.git
cd training-flask
python -m venv .venv
.venv\Scripts\activate.bat
pip install -U -r requirements.txt
flask run

Linux, MacOS

Just the activation of the virutalenv is different:

. .venv/bin/activate # https://linuxize.com/post/