-
Notifications
You must be signed in to change notification settings - Fork 0
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
26 changed files
with
723 additions
and
785 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: 'settings.xml' | ||
description: 'Generate settings.xml for authenticating internal model package download' | ||
|
||
inputs: | ||
internal-maven-repo-server-id: | ||
description: 'The server ID of Maven repo that contains the model package' | ||
required: true | ||
internal-maven-repo-user: | ||
description: 'The accessing user of Maven repo that contains the model package' | ||
required: true | ||
internal-maven-repo-token: | ||
description: 'The access token of Maven repo that contains the model package' | ||
required: true | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Authenticating internal model package download | ||
uses: whelk-io/maven-settings-xml-action@v20 | ||
with: | ||
servers: > | ||
[ | ||
{ | ||
"id": "${{ inputs.internal-maven-repo-server-id }}", | ||
"username": "${{ inputs.internal-maven-repo-user }}", | ||
"password": "${{ inputs.internal-maven-repo-token }}" | ||
} | ||
] |
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Copyright Jiaqi Liu | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
version: "3.9" | ||
services: | ||
web: | ||
build: . | ||
ports: | ||
- "8080:8080" | ||
environment: | ||
- MODEL_PACKAGE_NAME=${MODEL_PACKAGE_NAME} | ||
- DB_USER=root | ||
- DB_PASSWORD=root | ||
- DB_DRIVER=com.mysql.jdbc.Driver | ||
- DB_DIALECT=org.hibernate.dialect.MySQLDialect | ||
- DB_URL=jdbc:mysql://db/elide?serverTimezone=UTC | ||
- OAUTH_ENABLED=false | ||
depends_on: | ||
db: | ||
condition: service_healthy | ||
db: | ||
image: "mysql:5.7" | ||
ports: | ||
- "3306:3306" | ||
volumes: | ||
- "./mysql-init.sql:/docker-entrypoint-initdb.d/mysql-init.sql" | ||
environment: | ||
MYSQL_ROOT_PASSWORD: root | ||
healthcheck: | ||
test: mysqladmin ping -h localhost -u root -proot | ||
timeout: 3s | ||
retries: 3 |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
-- Copyright Jiaqi Liu | ||
-- | ||
-- Licensed under the Apache License, Version 2.0 (the "License"); | ||
-- you may not use this file except in compliance with the License. | ||
-- You may obtain a copy of the License at | ||
-- | ||
-- http://www.apache.org/licenses/LICENSE-2.0 | ||
-- | ||
-- Unless required by applicable law or agreed to in writing, software | ||
-- distributed under the License is distributed on an "AS IS" BASIS, | ||
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
-- See the License for the specific language governing permissions and | ||
-- limitations under the License. | ||
|
||
CREATE DATABASE IF NOT EXISTS elide; | ||
USE elide; |
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.