-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
74 changed files
with
1,684 additions
and
1,568 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,36 @@ | ||
mysql56: | ||
image: mysql:5.6 | ||
ports: | ||
- "3306:3306" | ||
environment: | ||
- MYSQL_USER=springuser | ||
- MYSQL_PASSWORD=ThePassword | ||
- MYSQL_DATABASE=db_example | ||
- MYSQL_RANDOM_ROOT_PASSWORD=true | ||
mysql57: | ||
image: mysql:5.7 | ||
ports: | ||
- "3306:3306" | ||
environment: | ||
- MYSQL_USER=springuser | ||
- MYSQL_PASSWORD=ThePassword | ||
- MYSQL_DATABASE=db_example | ||
- MYSQL_RANDOM_ROOT_PASSWORD=true | ||
mysql: | ||
image: mysql | ||
image: mysql:8.0 | ||
ports: | ||
- "3306:3306" | ||
environment: | ||
- MYSQL_USER=springuser | ||
- MYSQL_PASSWORD=ThePassword | ||
- MYSQL_DATABASE=db_example | ||
- MYSQL_RANDOM_ROOT_PASSWORD=true | ||
volumes: | ||
- "./conf.d:/etc/mysql/conf.d:ro" | ||
mariadb: | ||
image: mariadb:10.6 | ||
ports: | ||
- "3306:3306" | ||
environment: | ||
- MARIADB_USER=springuser | ||
- MARIADB_PASSWORD=ThePassword | ||
- MARIADB_DATABASE=db_example | ||
- MARIADB_RANDOM_ROOT_PASSWORD=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,5 +14,5 @@ plugins: | |
markdown_extensions: | ||
- admonition | ||
extra: | ||
rdp_version: 1.5.3 | ||
rdp_version: 1.5.4 | ||
git_ref: master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
package ubc.pavlab.rdp; | ||
|
||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.data.jpa.repository.config.EnableJpaAuditing; | ||
|
||
/** | ||
* Configuration for auditing entities creation and modification with Spring Data JPA. | ||
* | ||
* @author poirigui | ||
*/ | ||
@Configuration | ||
@EnableJpaAuditing | ||
public class JpaAuditingConfig { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.