Skip to content
This repository was archived by the owner on Feb 9, 2025. It is now read-only.

Initialize

Compare
Choose a tag to compare
@im-kulikov im-kulikov released this 24 Feb 20:44
· 12 commits to master since this release
7bfb318

PostgreSQL module (for Helium) provides you connection to PostgreSQL server

Module provides you connection to PostgreSQL server

  • *pg.DB is a database handle representing a pool of zero or more underlying connections. It's safe for concurrent use by multiple goroutines

Configuration:

  • yaml example
posgres:
    address: string
    username: string
    password: string
    database: string
    debug: bool
    pool_size: int
  • env example
POSTGRES_ADDRESS=string
POSTGRES_USERNAME=string
POSTGRES_PASSWORD=string
POSTGRES_DATABASE=string
POSTGRES_DEBUG=bool
POSTGRES_POOL_SIZE=int