Trivial Tickets Wiki

Support ticket system in Go

View Project on GitHub See the project Wiki

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 :book: Build and Execution for the next steps.

:warning: 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 :book: Server Usage for more information).


This project is licensed under the GNU General Public License Version 3. See the License Page or http://www.gnu.org/licenses for information about redistribution.

Trivial Tickets Ticketsystem
Copyright (C) 2019 The Contributors

keyboard_arrow_up
Back to Top