-
Notifications
You must be signed in to change notification settings - Fork 2
Configuration
Sakib Sami edited this page Aug 8, 2017
·
2 revisions
Please do required changes in conf/application.conf
file,
db {
# https://www.playframework.com/documentation/latest/Developing-with-the-H2-Database
default.driver = com.mysql.jdbc.Driver
default.url = "jdbc:mysql://localhost/minio_rest_db" # Change to Database URL
default.username = "root" # Change to Database User
default.password = "12345" # Change to Database Password
# You can turn on SQL logging for any datasource
# https://www.playframework.com/documentation/latest/Highlights25#Logging-SQL-statements
default.logSql = true
}
minioConfig {
msHost = "http://localhost:9000/api/v1" # Change to Server Url
msUri = "http://localhost:9000" # Change to Minio URL
msSecrete = "asdfasdfasdf" # Change to Minio Secrete Key
msAccessToken = "23123fasfasdf" # Change to Minio Access Token
}