An open API service indexing awesome lists of open source software.

https://github.com/shivau1208/todo

Your Personal Todo App
https://github.com/shivau1208/todo

ajax css3 dockerfile html5 javascript mongodb python3

Last synced: about 15 hours ago
JSON representation

Your Personal Todo App

Awesome Lists containing this project

README

        

# Todo

#### Todo application to add daily tasks.
#### Application will work as Single page application using AJAX and JSON.
#### To clone the application use below link:
# [Todo](https://github.com/shivau1208/S-ToDo)
## Previews
![](https://github.com/shivau1208/S-ToDo/assets/102743170/ce078b10-8294-475e-8f71-97bbeffdf80d)
![](https://github.com/shivau1208/S-ToDo/assets/102743170/563d8670-d5c4-4642-99ab-880901866656)

## Developement Setup
```
1. Install Python > 3.11
2. Create enviornment with python.
3. pip install -r requirement.txt
4. python run.py
```

## Build Docker Image with Dockerfile
```docker build -t todo ```

## Run the Container with Docker
```
docker run -p 5000:5000 --name TodoContainer todo
```

## Mongo DB Connection
```
from pymongo import MongoClient

# Connect to MongoDB
client = MongoClient('mongodb://localhost:27017/')

```