Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 🚀🐋
- Host: GitHub
- URL: https://github.com/devenes/todo-web-app
- Owner: devenes
- License: apache-2.0
- Created: 2022-06-01T20:06:19.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-06-10T13:18:59.000Z (over 2 years ago)
- Last Synced: 2024-11-09T07:34:50.498Z (3 months ago)
- Topics: docker, javascript, js, node, node-js, react, reactjs, yarn
- Language: JavaScript
- Homepage:
- Size: 1.53 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Todo Web Application
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