Installation #
To install the Trivial Tickets ticket system, first ensure you have
a working Go environment installed. Go version 1.7 and above are
supported. Visit the Golang Installation
Site for installation instructions
and system requirements. Set the GOPATH
environment variable to
your desired location and then execute
go get -u -v github.com/mortenterhart/trivial-tickets
This command requires git to be installed.
It downloads and installs all project dependencies to your setup
Go workspace. For more information on how to set the GOPATH
environment variable accordingly visit Setting
GOPATH from the
Go Wiki.
The ticket system is now installed under
$GOPATH/src/github.com/mortenterhart/trivial-tickets
. Head over
to Build and Execution for the next
steps.
Please do not use the go install
command as it puts the
binary to $GOPATH/bin
and the default file and directory paths
get incorrect. If you do this please be aware that you always have
to provide the relative paths to the resource folders via command-line
flags (see Server Usage for more information).