Register Services

Register services in bringin backend project use http server to serve logic.

Register services serve logics like ( Register with email, verify registration, & request new verification).

Tech Stack

  • Golang version 1.20

  • Postgres version 14 as Primary Database

Installation

  • Make sure you have golang version 1.20

  • Make sure you have postgres that support uuid, jsonb

  • Make sure you have user and cores services

  • See Recommmended project structure section.

Migrate Database

Make sure you already create social network database. Look at folder internal/sqls you can execute sql in that folder to migrate database. You must to migrate tables at social network database.

Run Services

First to run this services, make sure your database and the tables that needed already created. Then create .env file from example.env template. The example.env file look likes below change the configuration and match with your environment.

After .env file created. Run this command

    go mod download // run this if dependency not downloaded
    go mod tidy // run this if dependency changed
    go run cmd/main.go -command=main

Last updated