/greenlight

Learning advanced Go concepts with the book "Lets Go Further"

Primary LanguageGoBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

Greenlight

It is based on the book "Let's Go Further" by Alex Edwards.

Prep the Database

Create a Docker instance of MariaDB for development purposes:

docker run --name greenlight_dev \
    -p 5432:5432 \
    -e 'POSTGRES_PASSWORD=P@ssw0rd' \
    -d postgres:14

Seed DB?