TodoApp is a simple and efficient application to manage your daily tasks. Built with JavaScript, HTML, CSS, and Docker, this app allows users to add, sort, and mark tasks as completed.
Features
- Add new tasks
- Mark tasks as completed
- Sort tasks
- Dockerized for easy deployment
- Clone the repository:
git clone https://github.com/tomernegad/todoapp.git cd todoapp
- Install dependencies:
npm install
- Run the application:
npm run dev
- Open your browser and navigate to:
http://localhost:3000
- Build the Docker image:
docker build -t todoapp .
- Run the Docker container:
docker run -p 3000:3000 todoapp