fix(components): 🔧 update default config

master
Xeronith 2023-05-01 14:43:07 +03:30
rodzic 9df75b259a
commit afaf8e7d40
4 zmienionych plików z 27 dodań i 5 usunięć

Wyświetl plik

@ -366,5 +366,3 @@ __debug_bin
.ionide
# End of https://www.toptal.com/developers/gitignore/api/visualstudiocode,intellij+all,goland+all,go,node,macos
config.yaml

2
.gitignore vendored
Wyświetl plik

@ -367,5 +367,3 @@ __debug_bin
.ionide
# End of https://www.toptal.com/developers/gitignore/api/visualstudiocode,intellij+all,goland+all,go,node,macos
config.yaml

19
config.yaml 100644
Wyświetl plik

@ -0,0 +1,19 @@
environment: development
server:
fqdn: localhost
protocol: http
ports:
passive: 7080
# used for secure cookie
# doc: https://pkg.go.dev/github.com/gorilla/securecookie@v1.1.1
hash_key: '---INSERT-YOUR-HASH-KEY---'
block_key: '---INSERT-YOUR-BLOCK-KEY---'
postgres:
host: 127.0.0.1
port: 5432
database: greatape
username: postgres
password: password

Wyświetl plik

@ -1,9 +1,16 @@
environment: development
server:
protocol: http
fqdn: localhost
protocol: http
ports:
passive: 7080
# used for secure cookie
# doc: https://pkg.go.dev/github.com/gorilla/securecookie@v1.1.1
hash_key: '---INSERT-YOUR-HASH-KEY---'
block_key: '---INSERT-YOUR-BLOCK-KEY---'
postgres:
host: 127.0.0.1
port: 5432