mirror of
https://mzte.de/git/LordMZTE/brevo
synced 2024-10-31 20:59:01 +01:00
add readme
This commit is contained in:
parent
0d8f70c2ab
commit
32f6de778d
3 changed files with 6 additions and 2 deletions
2
README.md
Normal file
2
README.md
Normal file
|
@ -0,0 +1,2 @@
|
|||
# brevo
|
||||
URL shortener written in rust using the warp web server and MySQL
|
|
@ -1,5 +1,8 @@
|
|||
# database URL including username, password, IP, port and database
|
||||
database_url = "mysql://brevo:brevo@127.0.0.1:3306/brevo"
|
||||
database = "brevo"
|
||||
# address to bind the HTTP server to
|
||||
bind_addr = "127.0.0.1:3001"
|
||||
# length of the suffix of shortened URLs
|
||||
link_len = 6
|
||||
# base URL where the service is reployed, used for displaying shortened URLs to users
|
||||
base_url = "http://127.0.0.1:3001/"
|
||||
|
|
|
@ -7,7 +7,6 @@ use url::Url;
|
|||
pub struct Config {
|
||||
pub database_url: String,
|
||||
pub bind_addr: SocketAddr,
|
||||
pub database: String,
|
||||
pub link_len: u8,
|
||||
pub base_url: Url,
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue