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
Version
What version of Denali are you using? Run denali -h to see.
Version: 3bf3064
Describe the bug
Getting errors parsing configuration file, cannot start service.
Only able to start service with ./denali start --port 8080 --temp
To Reproduce
Steps to reproduce the behavior:
[api]
port = "8080" # Fixed port to run server on
[warehouse]
path = "s3://warehouse/" # Path to warehouse directory
[database]
url = "" # URL to connect to database
dialect = "sqlite" # Database dialect used to determine how to connect to database. Allowed: postgres (or pgx), sqlite (or sqlite3)
Error Decoding Config: toml: cannot decode TOML string into struct field struct { Port uint64 "env:\"PORT\"" }.Port of type uint64
[api]
port = 8080 # Fixed port to run server on
[warehouse]
path = "s3://warehouse/" # Path to warehouse directory
[database]
url = "" # URL to connect to database
dialect = "sqlite" # Database dialect used to determine how to connect to database. Allowed: postgres (or pgx), sqlite (or sqlite3)
` is not supported as the storage backend. Only `postgres` and `sqlite` is.
[api]
port = 8080 # Fixed port to run server on
[warehouse]
path = "s3://warehouse/" # Path to warehouse directory
[database]
url = "" # URL to connect to database
dialect = sqlite # Database dialect used to determine how to connect to database. Allowed: postgres (or pgx), sqlite (or sqlite3)
Error Decoding Config: toml: incomplete number
The text was updated successfully, but these errors were encountered:
Version
What version of Denali are you using? Run
denali -h
to see.Version: 3bf3064
Describe the bug
Getting errors parsing configuration file, cannot start service.
Only able to start service with
./denali start --port 8080 --temp
To Reproduce
Steps to reproduce the behavior:
The text was updated successfully, but these errors were encountered: