This is a simple Rust project that provides a RESTful API for managing users. It uses Postgres as the database and provides endpoints for creating, retrieving, updating, and deleting users.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
- Docker
- Docker Compose
- Clone the repository:
git clone https://github.com/zvdy/repository.git
cd repository
- Build and run the project using Docker Compose:
docker-compose build
docker-compose up
The server will start at localhost:8080
.
You can use curl
to test the API endpoints.
curl -X POST -H "Content-Type: application/json" -d '{"name":"John Doe","email":"[email protected]"}' http://localhost:8080/users
Replace :id
with the ID of the user you want to retrieve.
curl -X GET http://localhost:8080/users/:id
curl -X GET http://localhost:8080/users
Replace :id
with the ID of the user you want to update.
curl -X PUT -H "Content-Type: application/json" -d '{"name":"Jane Doe","email":"[email protected]"}' http://localhost:8080/users/:id
Replace :id
with the ID of the user you want to delete.
curl -X DELETE http://localhost:8080/users/:id
This project is licensed under the MIT License - see the LICENSE.md file for details.