2021-06-24 16:25:44 +02:00
|
|
|
# database URL including username, password, IP, port and database
|
2021-06-24 15:57:11 +02:00
|
|
|
database_url = "mysql://brevo:brevo@127.0.0.1:3306/brevo"
|
2021-06-24 16:25:44 +02:00
|
|
|
# address to bind the HTTP server to
|
2021-06-24 15:57:11 +02:00
|
|
|
bind_addr = "127.0.0.1:3001"
|
2021-06-24 16:25:44 +02:00
|
|
|
# length of the suffix of shortened URLs
|
2021-06-24 15:57:11 +02:00
|
|
|
link_len = 6
|
2021-06-24 16:25:44 +02:00
|
|
|
# base URL where the service is reployed, used for displaying shortened URLs to users
|
2021-06-24 15:57:11 +02:00
|
|
|
base_url = "http://127.0.0.1:3001/"
|