Browse Source
- Fixed go vet tests - renamed config keys: fix #39dependabot/npm_and_yarn/web/prismjs-1.21.0
13 changed files with 38 additions and 35 deletions
@ -1,11 +1,8 @@ |
|||||
http: |
listen_addr: ':8080' # Consists of 'IP:Port', e.g. ':8080' listens on any IP and on Port 8080 |
||||
ListenAddr: ':8080' # Consists of 'IP:Port', e.g. ':8080' listens on any IP and on Port 8080 |
base_url: 'http://localhost:3000' # Origin URL, required for the authentication via OAuth |
||||
BaseURL: 'http://localhost:3000' # Origin URL, required for the authentication via OAuth |
data_dir: ./data # Contains: the database and the private key |
||||
General: |
enable_debug_mode: true # Activates more detailed logging |
||||
DataDir: ./data # Contains: the database and the private key |
shorted_id_length: 4 # Length of the random generated ID which is used for new shortened URLs |
||||
EnableDebugMode: true # Activates more detailed logging |
|
||||
ShortedIDLength: 4 # Length of the random generated ID which is used for new shortened URLs |
|
||||
oAuth: |
|
||||
Google: |
Google: |
||||
ClientID: replace me # ClientID which you get from console.cloud.google.com |
ClientID: replace me # ClientID which you get from console.cloud.google.com |
||||
ClientSecret: replace me # ClientSecret which get from console.cloud.google.com |
ClientSecret: replace me # ClientSecret which get from console.cloud.google.com |
||||
|
|||||
@ -1,4 +1,3 @@ |
|||||
General: |
data_dir: ../data |
||||
DataDir: ../data |
enable_debug_mode: true |
||||
EnableDebugMode: true |
shorted_id_length: 4 |
||||
ShortedIDLength: 4 |
|
||||
|
|||||
Loading…
Reference in new issue