Skip to content

This project is a RESTful API for a simple CRUD (Create, Read, Update, Delete) system, built with Go.

Notifications You must be signed in to change notification settings

SallesCosta/user-and-products-manager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Users & Products manager

This project is a RESTful API for a simple CRUD (Create, Read, Update, Delete) system, built with Go.

Technologies Used

go icon go icon go icon go icon go icon

  • Go: Programming language used to develop the application.
  • Chi: Lightweight and fast HTTP router for Go.
  • GORM: ORM (Object-Relational Mapping) in Go for database handling.
  • SQLite: Embedded SQL database system.
  • Swaggo: API documentation tool for Go.

Installation

To install and run this project locally, follow these steps:

  1. Clone the repository to your local machine.
  2. Navigate to the project directory.
  3. Run go mod tidy to download the project dependencies.
  4. Run go run cmd/server/main.go to start the server.

Usage

The API supports the following operations:

  • POST /users: Creates a new user.
  • POST /users/generate_token: Generates a JWT token for a user.
  • GET /users: Returns all users.
  • POST /products: Creates a new product.
  • GET /products: Returns all products.
  • GET /products/{id}: Returns a specific product.
  • PUT /products/{id}: Updates a specific product.
  • DELETE /products/{id}: Deletes a specific product.

Documentation

The API documentation is available at http://localhost:8000/docs/doc.json when the server is running.

Contribution

Contributions are welcome! Please feel free to open an issue or submit a pull request.

About

This project is a RESTful API for a simple CRUD (Create, Read, Update, Delete) system, built with Go.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages