Skip to content

scalable key-value storage with persistent storage

Notifications You must be signed in to change notification settings

jamshidi799/storage

Repository files navigation

storage

a scalable key-value storage that developed base on Clean Architecture and DDD.

  • Gin as web framework
  • Postgres as persistent storage
  • BigCache as in-memory cache layer

storage drawio

How To Run This Project

Docker Compose

Here is the steps to run it with docker-compose

#move to directory
$ cd workspace

# Clone into your workspace
$ git clone https://github.com/jamshidi799/storage.git

#move to project
$ cd storage

$ docker-compose up

Build Project

first you should download dependency

$ go mod download

then create .env file in root of project and put this value on it (change values base on your setup)

ENVIRONMENT=dev

POSTGRES_HOST=localhost
POSTGRES_PORT=5432
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
POSTGRES_DATABASE=storage

JWT_SECRET=secret

this config assumes that a postgres database listen on localhost:5432 with that configs.

then run the project:

$ go run main.go 

project will listen on http://localhost:8080

swagger

you can find OpenApi spec on http://localhost:8080/swagger/index.html

for updating swagger spec you should first swag with this:

$ go install github.com/swaggo/swag/cmd/swag@latest

then run this command in root of project:

$ swag init

About

scalable key-value storage with persistent storage

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published