You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Command line arguments / config
List all command line arguments or config properties ./ghz-web -config web.toml
port = 80 # the port for the http server
[database] # the database options
type = "sqlite3"
connection = "data/ghz.db"
[log]
level = "info" # log level
path = "/tmp/ghz.log" # the path to log file, otherwize stdout is used
Describe the bug
After running CLI command with default config settings given in docs getting Binary was compiled with 'CGO_ENABLED=0', go-sqlite3 requires cgo to work. This is a stub
To Reproduce
Steps to reproduce the behavior:
Download latest binary for linux and try to start ghz-web with default config given in docs.
Expected behavior
it starts
Environment
OS: Linux
ghz: 0.42.0 or 0.41.0
The text was updated successfully, but these errors were encountered:
Hello, I am a bit constrained with time these days but will try and get to this soonish. As a work around one can build the project with go-sqlite3 support and CGO_ENABLED=1 manually for their target platform.
Command line arguments / config
List all command line arguments or config properties
./ghz-web -config web.toml
Describe the bug
After running CLI command with default config settings given in docs getting
Binary was compiled with 'CGO_ENABLED=0', go-sqlite3 requires cgo to work. This is a stub
To Reproduce
Steps to reproduce the behavior:
Download latest binary for linux and try to start ghz-web with default config given in docs.
Expected behavior
it starts
Environment
The text was updated successfully, but these errors were encountered: