sportypenguins / jumpjumpwaddle

Design and perform workouts.
Creative Commons Zero v1.0 Universal
0 stars 1 forks source link

Serve website with Flask on localhost. #2

Open stefanwezel opened 3 years ago

stefanwezel commented 3 years ago

Initialize a website with flask or similar framework that can serve as scaffolding for later development of the application.

stefanwezel commented 3 years ago

@Isabel-Weber funktioniert das Beispiel unten auf Windows?

from flask import Flask
app = Flask(__name__)

@app.route('/')
def hello_world():
    return 'Hello, World!'

und server starten mit


export FLASK_APP=hello.py
flask run