This is a Flask web application. Follow the instructions below to set up and run the application.
- Python 3.6 or higher
- pip (Python package installer)
git clone <repository-url>
cd task-flask
python3 -m venv env
On Windows:
venv\Scripts\activate
On macOS/Linux:
source env/bin/activate
pip3 install -r requirements.txt
flask run
The application will be available at http://127.0.0.1:5000/
gunicorn app:app
Create a .env
file in the project root with the following variables (if needed):
FLASK_APP=app.py
FLASK_ENV=development
SECRET_KEY=your_secret_key
To exit the virtual environment:
deactivate