uzunb / todo-flask

todo-flask app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

To Do App

This repo has been develop with Python v3.8 and Flask Framework.

Requirements

You need to install the following packages:

* Python v3.8
* Flask Framework
* SQLAlchemy

You can install them with the following commands.

How To Run

  1. Install virtualenv:
pip install virtualenv
  1. Open a terminal in the project root directory and run:
virtualenv env
  1. Then run the command:
.\env\Scripts\activate
  1. Then install the dependencies:
(env) pip install -r requirements.txt
  1. Finally start the web server:
(env) python app.py

This server will start on port 5000 by default. You can change this in app.py by changing the following line to this:

if __name__ == "__main__":
    app.run(debug=True, port=<desired port>)

Snapshot

About

todo-flask app

License:MIT License


Languages

Language:HTML 70.0%Language:Python 22.8%Language:CSS 7.2%