Started mobile web interface #1

Merged
mitch merged 1 commits from general_updates into master 2021-08-01 12:26:08 +00:00
2 changed files with 15 additions and 2 deletions
Showing only changes of commit 1d44ba766d - Show all commits

13
Vagrantfile vendored Normal file
View File

@ -0,0 +1,13 @@
Vagrant.configure("2") do |config|
config.vm.provider "docker" do |d|
d.image = "mysql:8.0.20"
config.vm.synced_folder "~/mysql", "/var/lib/mysql", docker_consistancy: "delegated"
d.privileged = "true"
d.ports = ["3306:3306"]
d.env = {
"MYSQL_USER":"root",
"MYSQL_ALLOW_EMPTY_PASSWORD":"yes",
"MYSQL_DATABASE":"crusadetracker"
}
end
end

View File

@ -38,8 +38,8 @@ spring:
datasource:
type: com.zaxxer.hikari.HikariDataSource
url: jdbc:mysql://localhost:3306/crusadetracker?useUnicode=true&characterEncoding=utf8&useSSL=false&allowPublicKeyRetrieval=true&useLegacyDatetimeCode=false&serverTimezone=UTC&createDatabaseIfNotExist=true
username: crusadetracker
password: crusadetracker
username: root
password:
hikari:
poolName: Hikari
auto-commit: false