Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/devenes/todo-web-app

Web application to manage your todo list in a simple and easy way 🚀🐋
https://github.com/devenes/todo-web-app

docker javascript js node node-js react reactjs yarn

Last synced: 22 days ago
JSON representation

Web application to manage your todo list in a simple and easy way 🚀🐋

Awesome Lists containing this project

README

        



Todo Web Application


Test
Tool
Tool
Tool
Tool
Tool
Github top language
Github language count
Repository size
License
Github stars


About   |  
Technologies   |  
Requirements   |  
Starting   |  
Output   |  
License   |  
Author

## :dart: About ##

Javascript web application to manage your todo list in a simple and easy way 🚀

## :rocket: Technologies ##

The following tools were used in this project:

- [Node.js](https://nodejs.org/en/)
- [JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript)
- [CSS](https://developer.mozilla.org/en-US/docs/Web/CSS)
- [HTML](https://developer.mozilla.org/en-US/docs/Web/HTML)
- [Docker](https://www.docker.com/)
- [Git](https://git-scm.com/)
- [GitHub](https://github.com/)
- [Yarn](https://yarnpkg.com/)
- [React](https://reactjs.org/)
- [Express](https://expressjs.com/)
- [SQLite](https://www.sqlite.org/)

## :white_check_mark: Requirements ##

Before starting :checkered_flag: you need to have [Git](https://git-scm.com), [Docker](https://www.docker.com/), [Yarn](https://yarnpkg.com/) and [Node](https://nodejs.org/en/) installed.

## :checkered_flag: Starting ##

### If you want to start the project locally, you can use the following commands:

```bash
# Clone this project
git clone https://github.com/devenes/todo-web-app
```

```bash
# Access
cd todo-web-app
```

```bash
# Install dependencies
yarn install --production
```

```bash
# Run the project
# The server will initialize in the
npm run start
```

### If you want to run the project in a Docker container, you can use the following command:

- Build the Docker container image using the `docker build` command.

```bash
docker build -t todo-app:v1.0 .
```

- Show the Docker image is created successfully.

```bash
docker image ls
```

- Run `todo app` from the local Docker image.

```bash
docker run --name todo -d -p 80:3000 todo-app:v1.0
# The server will initialize in the
```

- List running container.

```bash
docker ps
# or
docker container ls
```

## 📷 Expected Output ##

![output](output.jpg)

## 📚 Resources

- [Node.js Documentation](https://nodejs.org/en/docs/)

- [GitHub Documentation](https://docs.github.com/en/get-started/)

- [Docker Documentation](https://docs.docker.com/get-started/overview/)

## :memo: License ##

This project is under license from Apache. For more details, see the [LICENSE](LICENSE) file.

Made with :heart: by devenes

 

⬆️ Back to top