Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 546 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 546 Bytes

Key-Value Store (kvstore) Project

This project implements a simple key-value store HTTP server in Go.

Features

  • Set key-value pairs
  • Get value by key
  • Delete key-value pairs
  • Initialize with sample data
  • Show all stored key-value pairs

Installation

  1. Clone the repository:

    git clone [email protected]:Rahul1804/kvstore.git
    cd kvstore
  2. Install dependencies:

    go mod tidy
  3. Build the project:

    go build ./cmd/kvstore
  4. Run the server:

    ./kvstore