Initial Commit

This commit is contained in:
samnyan
2020-01-16 00:50:52 +09:00
commit 89771b7b51
331 changed files with 32076 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package icu.samnyan.aqua;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.TestPropertySource;
@TestPropertySource(locations = "classpath:application-test.properties")
@SpringBootTest
class AquaServerApplicationTests {
@Test
void contextLoads() {
}
}

View File

@@ -0,0 +1,11 @@
# For testing
## AimeDb server setting
aimedb.server.enable=true
aimedb.server.port=22345
allnet.server.host=localhost
allnet.server.port=80
## Http Server Port
server.port=80
spring.datasource.driver-class-name=org.h2.Driver
spring.datasource.url=jdbc:h2:mem:db
spring.jpa.hibernate.ddl-auto=create-drop