https://github.com/abhishek-sanwal/ai_powered_task_recommendation_system
This project focus on building a task recommendation system based on severak crucial factors.
https://github.com/abhishek-sanwal/ai_powered_task_recommendation_system
artificial-intelligence css flask flask-api-backend html5 reactjs tailwindcss vite
Last synced: 3 months ago
JSON representation
This project focus on building a task recommendation system based on severak crucial factors.
- Host: GitHub
- URL: https://github.com/abhishek-sanwal/ai_powered_task_recommendation_system
- Owner: abhishek-sanwal
- License: mit
- Created: 2024-11-30T05:58:09.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-12-02T18:55:13.000Z (over 1 year ago)
- Last Synced: 2025-10-30T14:50:30.918Z (9 months ago)
- Topics: artificial-intelligence, css, flask, flask-api-backend, html5, reactjs, tailwindcss, vite
- Language: JavaScript
- Homepage:
- Size: 222 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
AI Powered Task Management System
---
### Steps to run this project:
- ##### Clone repo
```
git clone
```
- ##### Navigate to backend folder
```
cd backend2
```
- ##### Install All backend dependencies
```
pipenv install
```
- ##### Activate Virtual Environment
```
pipenv shell
```
- Start **Mysql Server** and create a user **Tom** with password as **password** and grant ddl, dml, select permissions to it. Create a **restApi** database.
- Make sure it is listening to **port 3306** on localhost(http:127.0.0.1)
- ##### Load all environment variables
```
source .env
```
- ##### Init
```
flask db init
```
- ##### Migrate
```
flask db migrate
```
- ##### Upgrade
```
flask db upgrade
```
- ##### Start app
```
flask run
```
- ##### Move one level up in directory
```
cd ..
```
- ##### Move to Frontend
```
cd frontend
```
- ##### Install Node modules
```
npm install
```
- ##### Run Dev server(It is Vite app)
```
npm run dev
```
---
#### Upcoming Features:
- Improvement in User Interface.
- Upgrade to PostgresDB.
---