Skip to content

Commit

Permalink
Merge pull request #40 from fraenky8/ISSUE-39
Browse files Browse the repository at this point in the history
ISSUE-39: Update install instructions
  • Loading branch information
fraenky8 authored Mar 16, 2022
2 parents 58b2740 + 33ff41d commit 46fe150
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,17 @@ database schema.
[![Build & Test](https://github.com/fraenky8/tables-to-go/workflows/Go/badge.svg)](https://github.com/fraenky8/tables-to-go/actions)
[![Code Coverage](https://scrutinizer-ci.com/g/fraenky8/tables-to-go/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/fraenky8/tables-to-go/?branch=master)

## Requirements

- Go 1.17+

## Install

This project provides a make file but can also simply be installed with the usual
go-get command:
This project provides a make file but can also simply be installed with the
go-install command:

```
go get github.com/fraenky8/tables-to-go
go install github.com/fraenky8/tables-to-go@master
```

To enable SQLite3 support, clone the repo manually and run the make file:
Expand Down
1 change: 1 addition & 0 deletions pkg/database/sqlite_driver.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
//go:build sqlite3
// +build sqlite3

// Package database/sqlite_driver.go contains only the driver for the sqlite3
// database. It will get only included in the build if the tag `sqlite3` is
Expand Down

0 comments on commit 46fe150

Please sign in to comment.