Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kilee1230/rust-todo-app
rust todo api
https://github.com/kilee1230/rust-todo-app
Last synced: 24 days ago
JSON representation
rust todo api
- Host: GitHub
- URL: https://github.com/kilee1230/rust-todo-app
- Owner: kilee1230
- Created: 2024-01-21T04:56:56.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-09-16T13:52:33.000Z (about 2 months ago)
- Last Synced: 2024-09-17T11:55:56.571Z (about 2 months ago)
- Language: Rust
- Homepage:
- Size: 73.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rust Todo App
This is a simple Todo application written in Rust.
## Getting Started
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
### Prerequisites
- Rust: You can download Rust from [the official website](https://www.rust-lang.org/tools/install).
### Installing
1. Clone the repository: `git clone https://github.com/kilee1230/rust-todo-app.git`
2. Navigate to the project directory: `cd rust-todo-app`
3. Build the project: `make build`### Running the application
To run the application, use the following command:
```bash
make run-dev
```## Docker Build
To build the Docker image, run the following command:
```bash
docker build -t rust-todo-app .
```## Docker Run
To run the Docker image, use the following command:
```bash
docker run -p 8000:8000 rust-todo-app
```