Skip to content

Latest commit

 

History

History
36 lines (22 loc) · 787 Bytes

dev.md

File metadata and controls

36 lines (22 loc) · 787 Bytes

Environment Setup

Go

You must have go.

Installing dependencies

Dependencies are handled with modules.

Build

There's a Makefile which should make this step easier.

CLI version:

go build -o comics-downloader ./cmd/downloader

GUI version

Prerequisites then you can run:

go build -o comics-downloader-gui ./cmd/gui

if you don't want to install extra dependencies to build the GUI version you could use fyne-cross which requires Docker.

Run Tests

go test -v ./...