Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: create release for api, frontend and the whole app #1147

Merged
merged 2 commits into from
Nov 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ api-shell_plus: ## Run shell_plus
.PHONY: api-dev-server
api-dev-server: ## Start backend dev server
@docker compose stop api
@docker compose run --user root --use-aliases --service-ports api bash -c 'pip install pdbpp && ./manage.py runserver 0.0.0.0:8000'
@docker compose run --user root --use-aliases --service-ports api sh -c 'pip install pdbpp && ./manage.py runserver 0.0.0.0:8000'

.PHONY: makemigrations
makemigrations: ## Make django migrations
Expand Down
2 changes: 1 addition & 1 deletion api/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "mysagw"
version = "0.1.0"
version = "0.1.1"
description = "Application management for SAGW"
repository = "https://github.com/adfinis/mySAGW"
authors = ["Adfinis"]
Expand Down
8 changes: 4 additions & 4 deletions compose.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
x-version: 0.1.1
x-version: 0.1.2

services:
db:
Expand All @@ -11,7 +11,7 @@ services:
- "5432:5432"

api:
image: ghcr.io/adfinis/mysagw/api:0.1.0
image: ghcr.io/adfinis/mysagw/api:0.1.1
environment:
- DATABASE_HOST=db
- DATABASE_PORT=5432
Expand Down Expand Up @@ -62,11 +62,11 @@ services:
- KC_HTTP_RELATIVE_PATH=/auth
- KC_PROXY=edge
# import: docker compose exec keycloak /opt/keycloak/bin/kc.sh import --override true --file /opt/keycloak/data/import/test-config.json
# export: docker compose run keycloak /opt/keycloak/bin/kc.sh export --file /opt/keycloak/data/import/test-config.json
# export: docker compose run --rm keycloak /opt/keycloak/bin/kc.sh export --file /opt/keycloak/data/import/test-config.json
command: start

ember:
image: ghcr.io/adfinis/mysagw/ember:0.1.0
image: ghcr.io/adfinis/mysagw/ember:0.1.1

minio:
image: minio/minio:RELEASE.2023-09-04T19-57-37Z
Expand Down
2 changes: 1 addition & 1 deletion ember/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mysagw",
"version": "0.1.0",
"version": "0.1.1",
"private": true,
"description": "Small description for mySAGW goes here",
"repository": "",
Expand Down
Loading