Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 1011 Bytes

README.md

File metadata and controls

35 lines (25 loc) · 1011 Bytes

Credit Application Backend (Go)

Go Version Issues

Introduction

This project is a backend service for handling credit applications, written in Go. It provides a set of RESTful APIs for managing the credit application process, including submission, and pdf uploads.

Prerequisites

  • Go 1.16 or later
  • A running instance of a database (e.g., PostgreSQL)
  • Docker (optional, for containerized deployment)

Steps

  1. Clone the repository:

    git clone https://github.com/dmcleish91/credit-application-backend-go.git
    cd credit-application-backend-go
  2. Install dependencies:

    go mod tidy
  3. Configure the application:

    • Copy .env.example to .env and fill in your configuration details.
  4. Build the application:

    go build