-
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 branch 'OY-4695-update-versions' into MERGE__OY-4459__OY-4695
- Loading branch information
Showing
45 changed files
with
9,648 additions
and
10,471 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,10 +10,10 @@ runs: | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/project.clj') }} | ||
restore-keys: | | ||
${{ runner.os }}-maven- | ||
- name: Set up JDK 11 | ||
- name: Set up JDK 21 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '11' | ||
java-version: '21' | ||
distribution: 'temurin' | ||
|
||
- uses: szenius/[email protected] | ||
|
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 |
---|---|---|
|
@@ -28,4 +28,4 @@ pom.xml | |
.lsp/ | ||
/maksut.iws | ||
/maksut.ipr | ||
|
||
.clj-kondo/ |
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 +1 @@ | ||
11.0.15 | ||
21.0.2 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,62 +1,62 @@ | ||
NODE_MODULES = node_modules | ||
PM2 = PM2_HOME=.pm2 npx pm2 | ||
DOCKER_COMPOSE=COMPOSE_PARALLEL_LIMIT=8 $(if $(DOCKER_SUDO),sudo )docker-compose | ||
|
||
$(NODE_MODULES): package.json package-lock.json | ||
npm install | ||
touch $(NODE_MODULES) | ||
|
||
start-docker: | ||
@$(DOCKER_COMPOSE) up -d maksut-nginx-local | ||
|
||
start-docker-db: | ||
@$(DOCKER_COMPOSE) up -d maksut-db-local | ||
|
||
start-docker-local: | ||
@$(DOCKER_COMPOSE) up -d maksut-nginx-local | ||
@$(DOCKER_COMPOSE) up -d maksut-db-local | ||
|
||
start-docker-cypress: | ||
@$(DOCKER_COMPOSE) up -d maksut-nginx-local | ||
@$(DOCKER_COMPOSE) up -d maksut-e2e-db-local | ||
|
||
kill-docker: | ||
@$(DOCKER_COMPOSE) kill | ||
|
||
kill-docker-cypress: | ||
@$(DOCKER_COMPOSE) kill maksut-e2e-db-local | ||
|
||
start: $(NODE_MODULES) start-docker | ||
@$(PM2) start pm2.config.js --only maksut-frontend | ||
@$(PM2) start pm2.config.js --only maksut-backend | ||
|
||
start-local: $(NODE_MODULES) start-docker-local | ||
@$(PM2) start pm2.config.js --only maksut-frontend | ||
@$(PM2) start pm2.config.js --only maksut-backend | ||
|
||
log: $(NODE_MODULES) | ||
@$(PM2) logs --timestamp | ||
|
||
logs: log | ||
|
||
status: $(NODE_MODULES) | ||
@$(PM2) status | ||
|
||
kill: $(NODE_MODULES) kill-docker | ||
@$(PM2) kill | ||
|
||
start-cypress: start-docker-cypress | ||
@$(PM2) start pm2.config.js --only maksut-frontend | ||
@$(PM2) start pm2.config.js --only maksut-backend-cypress | ||
|
||
kill-cypress: kill-docker-cypress | ||
@$(PM2) stop pm2.config.js --only maksut-backend-cypress | ||
|
||
restart: kill start | ||
restart-local: kill start-local | ||
restart-cypress: kill-cypress start-cypress | ||
|
||
reload: | ||
@$(PM2) kill | ||
@$(PM2) start pm2.config.js --only maksut-frontend | ||
@$(PM2) start pm2.config.js --only maksut-backend | ||
NODE_MODULES = node_modules | ||
PM2 = PM2_HOME=.pm2 npx pm2 | ||
DOCKER_COMPOSE=COMPOSE_PARALLEL_LIMIT=8 $(if $(DOCKER_SUDO),sudo )docker-compose | ||
|
||
$(NODE_MODULES): package.json package-lock.json | ||
npm ci | ||
touch $(NODE_MODULES) | ||
|
||
start-docker: | ||
@$(DOCKER_COMPOSE) up -d maksut-nginx-local | ||
|
||
start-docker-db: | ||
@$(DOCKER_COMPOSE) up -d maksut-db-local | ||
|
||
start-docker-local: | ||
@$(DOCKER_COMPOSE) up -d maksut-nginx-local | ||
@$(DOCKER_COMPOSE) up -d maksut-db-local | ||
|
||
start-docker-test: | ||
@$(DOCKER_COMPOSE) up -d maksut-nginx-local | ||
@$(DOCKER_COMPOSE) up -d maksut-e2e-db-local | ||
|
||
kill-docker: | ||
@$(DOCKER_COMPOSE) kill | ||
|
||
kill-docker-test: | ||
@$(DOCKER_COMPOSE) kill maksut-e2e-db-local | ||
|
||
start: $(NODE_MODULES) start-docker | ||
@$(PM2) start pm2.config.js --only maksut-frontend | ||
@$(PM2) start pm2.config.js --only maksut-backend | ||
|
||
start-local: $(NODE_MODULES) start-docker-local | ||
@$(PM2) start pm2.config.js --only maksut-frontend | ||
@$(PM2) start pm2.config.js --only maksut-backend | ||
|
||
log: $(NODE_MODULES) | ||
@$(PM2) logs --timestamp | ||
|
||
logs: log | ||
|
||
status: $(NODE_MODULES) | ||
@$(PM2) status | ||
|
||
kill: $(NODE_MODULES) kill-docker | ||
@$(PM2) kill | ||
|
||
start-test: start-docker-test | ||
@$(PM2) start pm2.config.js --only maksut-frontend | ||
@$(PM2) start pm2.config.js --only maksut-backend-test | ||
|
||
kill-test: kill-docker-test | ||
@$(PM2) stop pm2.config.js --only maksut-backend-test | ||
|
||
restart: kill start | ||
restart-local: kill start-local | ||
restart-test: kill-test start-test | ||
|
||
reload: | ||
@$(PM2) kill | ||
@$(PM2) start pm2.config.js --only maksut-frontend | ||
@$(PM2) start pm2.config.js --only maksut-backend |
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 was deleted.
Oops, something went wrong.
Empty file.
Empty file.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,41 @@ | ||
version: '3.7' | ||
services: | ||
maksut-nginx-local: | ||
image: nginx | ||
container_name: maksut-nginx-local | ||
networks: | ||
maksut-local-network: | ||
ports: | ||
- "9030:9030" | ||
- "19030:19030" | ||
volumes: | ||
- "./nginx:/etc/nginx" | ||
maksut-e2e-db-local: | ||
image: postgres:12-alpine | ||
container_name: maksut-e2e-db-local | ||
environment: | ||
POSTGRES_PASSWORD: postgres_password | ||
POSTGRES_USER: postgres_user | ||
POSTGRES_DB: maksut | ||
networks: | ||
maksut-local-e2e-network: | ||
ports: | ||
- "15432:15432" | ||
command: -p 15432 | ||
maksut-db-local: | ||
image: postgres:12-alpine | ||
container_name: maksut-db-local | ||
environment: | ||
POSTGRES_PASSWORD: postgres_password | ||
POSTGRES_USER: postgres_user | ||
POSTGRES_DB: maksut | ||
TZ: 'Europe/Helsinki' | ||
PGTZ: 'Europe/Helsinki' | ||
networks: | ||
maksut-local-network: | ||
ports: | ||
- "15499:5432" | ||
#command: -p 55499 | ||
networks: | ||
maksut-local-network: | ||
maksut-local-e2e-network: | ||
version: '3.7' | ||
services: | ||
maksut-nginx-local: | ||
image: nginx | ||
container_name: maksut-nginx-local | ||
networks: | ||
maksut-local-network: | ||
ports: | ||
- "9030:9030" | ||
- "19030:19030" | ||
volumes: | ||
- "./nginx:/etc/nginx" | ||
maksut-e2e-db-local: | ||
image: postgres:15-alpine | ||
container_name: maksut-e2e-db-local | ||
environment: | ||
POSTGRES_PASSWORD: postgres_password | ||
POSTGRES_USER: postgres_user | ||
POSTGRES_DB: maksut | ||
networks: | ||
maksut-local-e2e-network: | ||
ports: | ||
- "15432:15432" | ||
command: -p 15432 | ||
maksut-db-local: | ||
image: postgres:15-alpine | ||
container_name: maksut-db-local | ||
environment: | ||
POSTGRES_PASSWORD: postgres_password | ||
POSTGRES_USER: postgres_user | ||
POSTGRES_DB: maksut | ||
TZ: 'Europe/Helsinki' | ||
PGTZ: 'Europe/Helsinki' | ||
networks: | ||
maksut-local-network: | ||
ports: | ||
- "15499:5432" | ||
#command: -p 55499 | ||
networks: | ||
maksut-local-network: | ||
maksut-local-e2e-network: |
Oops, something went wrong.