Skip to content

A simple Flask-based learning project which perform CRUD operations on tasks.

Notifications You must be signed in to change notification settings

SruthiKrish19/flask-task-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

flask-task-app

A simple Flask learning project which performs CRUD operations on tasks.

Features

Create and update tasks. Mark task as completed or pending. Delete tasks.

Project Setup

Step 1: Clone the repository:
git clone https://github.com/SruthiKrish19/flask-task-app.git
Step 2: Create a virtual environment:
python3 -m venv venv
source venv/bin/activate
Step 3: Install dependencies:
pip3 install -r requirements.txt
Step 4: Create the database:

Open a Python shell and run the following commands:

>>> from app import app, db
>>> with app.app_context():
...     db.create_all()
...     exit()
Step 5: Run the Flask app:
flask run

alternatively you can use

python app.py

Open the app in your browser: http://127.0.0.1:5000/

Demo Video

Click here to view the demo video!

About

A simple Flask-based learning project which perform CRUD operations on tasks.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published