Test MySQL Connection

This commit is contained in:
GuilhermeWerner
2021-01-31 08:44:24 -03:00
parent 09a99f4860
commit 5a38931498
6 changed files with 92 additions and 22 deletions

26
Rocket.toml Normal file
View File

@ -0,0 +1,26 @@
[development]
address = "localhost"
port = 5000
keep_alive = 5
read_timeout = 5
write_timeout = 5
log = "normal"
limits = { forms = 32768 }
[staging]
address = "localhost"
port = 5000
keep_alive = 5
read_timeout = 5
write_timeout = 5
log = "normal"
limits = { forms = 32768 }
[production]
address = "localhost"
port = 5000
keep_alive = 5
read_timeout = 5
write_timeout = 5
log = "critical"
limits = { forms = 32768 }