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
- Host: GitHub
- URL: https://github.com/shivau1208/todo
- Owner: shivau1208
- Created: 2022-08-12T10:46:37.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-08-05T18:49:57.000Z (11 months ago)
- Last Synced: 2025-02-26T19:29:21.225Z (5 months ago)
- Topics: ajax, css3, dockerfile, html5, javascript, mongodb, python3
- Language: HTML
- Homepage: https://todo-8q0w.onrender.com
- Size: 72.3 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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

## 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/')```