Web application for task manager with Python and Flask
- Install Python 3.9.13 or higger.
- Install Git
git clone https://github.com/CodexSavage/Flask-Task-Manager.git
- First of all, we have to work in a virtual environment. To do this, we need to install the Python virtual environment.
pip install virtualenv
- In our terminal, put the next commands to start our virtual environment:
virtualenv -p python3 env
The arg 'env' is the name that we decide to put to the virtual environment
.\venv\Scripts\activate
- Start the program with the next command:
python ./src/app.py
- Go to your favourite internet explorer and put the following URL:
localhost:5000
Or click the URL that Flask show you when it initilizes.
