This repository has been archived by the owner on Dec 9, 2022. It is now read-only.
-
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.
Merge pull request #91 from livepoll/develop
Continuous release
- Loading branch information
Showing
76 changed files
with
4,663 additions
and
690 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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,52 @@ | ||
version: "3.9" | ||
services: | ||
db: | ||
image: mysql:8.0 | ||
networks: | ||
- app-db | ||
environment: | ||
MYSQL_ROOT_PASSWORD: qCNyq2SazD9vHqre5PPR7dCLs84Jhk | ||
MYSQL_DATABASE: livepoll | ||
MYSQL_USER: livepoll | ||
MYSQL_PASSWORD: M3uBcPLbM7RmgX4C3wAUej6WPzq886 | ||
healthcheck: | ||
test: ["CMD", "mysqladmin", "ping"] | ||
interval: 10s | ||
retries: 10 | ||
timeout: 5s | ||
start_period: 40s | ||
api: | ||
build: ../.. | ||
networks: | ||
- app-db | ||
ports: | ||
- 8080:8080 | ||
environment: | ||
LIVE_POLL_MYSQL_URL: jdbc:mysql://db:3306/livepoll | ||
LIVE_POLL_MYSQL_USER: livepoll | ||
LIVE_POLL_MYSQL_PASSWORD: M3uBcPLbM7RmgX4C3wAUej6WPzq886 | ||
LIVE_POLL_DEV_URL: localhost:4200 | ||
LIVE_POLL_SERVER_URL: localhost:8080 | ||
LIVE_POLL_MAIL_HOST: ${LIVE_POLL_MAIL_HOST} | ||
LIVE_POLL_MAIL_PORT: ${LIVE_POLL_MAIL_PORT} | ||
LIVE_POLL_MAIL_USERNAME: ${LIVE_POLL_MAIL_USERNAME} | ||
LIVE_POLL_MAIL_PASSWORD: ${LIVE_POLL_MAIL_PASSWORD} | ||
LIVE_POLL_JWT_AUTH_COOKIE_NAME: jaQ83KNSgsquPRGy8b8HraKB5kUQC3 | ||
LIVE_POLL_JWT_COOKIE_KEY_VALUE: 4Vdx8rg84SvGYbhNwdsS8s6ZwH94LC | ||
LIVE_POLL_JWT_SECRET: xyqCc3h3Z2DSYvz7ELEQMsv4U4b7jg | ||
LIVE_POLL_HTTPS_ENABLED: "false" | ||
LIVE_POLL_HTTPS_CERT_PASSWORD: ${LIVE_POLL_HTTPS_CERT_PASSWORD} | ||
LIVE_POLL_POSTMAN: "true" | ||
server.error.include-message: "always" | ||
depends_on: | ||
db: | ||
condition: service_healthy | ||
healthcheck: | ||
test: "curl --fail --silent localhost:8080/actuator/health | grep UP || exit 1" | ||
interval: 10s | ||
timeout: 5s | ||
retries: 10 | ||
start_period: 40s | ||
|
||
networks: | ||
app-db: {} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,21 +5,26 @@ name: Docs Build & Deploy | |
|
||
on: | ||
push: | ||
branches: [ main ] | ||
branches: [ main, develop ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK 1.11 | ||
uses: actions/setup-java@v1 | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: 1.11 | ||
distribution: zulu | ||
java-version: 11 | ||
|
||
- name: Build Documentation | ||
run: | | ||
mvn clean dokka:dokka | ||
git reset --hard HEAD | ||
- name: Deploy docs | ||
uses: SamKirkland/[email protected] | ||
with: | ||
|
This file was deleted.
Oops, something went wrong.
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
Empty file.
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.