Running the Flask Project
00:00 Now that you have created a simple Flask application, let’s run it. Open your terminal within the project’s root directory, and make sure you activate the virtual environment if it’s not already activated.
00:13
Now enter the command python -m flask run
. This command starts the Flask development server, and prints a message in the terminal telling you the address where your app is running.
00:26 Open this address in your web browser and you should see the Hello, World! message being displayed.
00:32 This confirms that our basic Flask application is working correctly.
Become a Member to join the conversation.