Skip to content

Commit

Permalink
Update urls and add all-contributors-auto-action
Browse files Browse the repository at this point in the history
  • Loading branch information
mprins committed Aug 19, 2024
1 parent 334929d commit 9b05e12
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Release Drafter'
name: 'Release Drafter & Contributors'

on:
push:
Expand All @@ -13,3 +13,9 @@ jobs:
- uses: release-drafter/release-drafter@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

contributors:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: JoshuaKGoldberg/[email protected]
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ LABEL org.opencontainers.image.authors="[email protected]" \
org.opencontainers.image.description="Tailormap API service provides OpenAPI REST interface for Tailormap" \
org.opencontainers.image.vendor="B3Partners BV" \
org.opencontainers.image.title="Tailormap API" \
org.opencontainers.image.url="https://github.com/B3Partners/tailormap-api/" \
org.opencontainers.image.source="https://github.com/B3Partners/tailormap-api/" \
org.opencontainers.image.documentation="https://github.com/B3Partners/tailormap-api/" \
org.opencontainers.image.url="https://github.com/Tailormap/tailormap-api/" \
org.opencontainers.image.source="https://github.com/Tailormap/tailormap-api/" \
org.opencontainers.image.documentation="https://github.com/Tailormap/tailormap-api/" \
org.opencontainers.image.licenses="MIT" \
org.opencontainers.image.version=$TAILORMAP_API_VERSION \
org.opencontainers.image.build-date=$BUILD_DATE \
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tailormap API provides the webserver and backend API for the Tailormap frontend.
the Tailormap viewer and admin interfaces are written in Angular and developed in a separate
repository.

If you want to run Tailormap the best starting point is the [tailormap-viewer](https://github.com/B3Partners/tailormap-viewer/)
If you want to run Tailormap the best starting point is the [tailormap-viewer](https://github.com/Tailormap/tailormap-viewer/)
repository with the Angular frontends where you will find a Docker Compose stack which will run the
frontends, backend and PostgreSQL configuration database.

Expand All @@ -27,7 +27,7 @@ To build and run the project, you need to have the following installed:
- Docker 20.10.x with buildx 0.9 or higher (this requirement may be skipped if you don't need to build
the docker images or build release artifacts)

The quickest way to start the PostgreSQL database is to check out the Docker Compose stack in [tailormap-viewer](https://github.com/B3Partners/tailormap-viewer/)
The quickest way to start the PostgreSQL database is to check out the Docker Compose stack in [tailormap-viewer](https://github.com/Tailormap/tailormap-viewer/)
and start the `db` container. This opens a port on localhost:5432. If you already have your own
database running locally, create a database, user and password all set to `tailormap` to use that.
Beware that Tailormap is only developed and supported with the PostgreSQL version from the Docker
Expand Down Expand Up @@ -62,7 +62,7 @@ You can then point your browser at http://localhost:8080/swagger-ui/index.html t
API as described by the OpenAPI specification and use the admin backend enabled by Spring Data REST
at http://localhost:8080/api/admin/ if you have activated the `hal-explorer` Maven profile.

The easiest way to see the API in action is to run the [tailormap-viewer](https://github.com/B3Partners/tailormap-viewer/)
The easiest way to see the API in action is to run the [tailormap-viewer](https://github.com/Tailormap/tailormap-viewer/)
frontends locally. These can be run with a webpack dev server which will reverse proxy a locally
running `tailormap-api` if you start the frontends with the `PROXY_USE_LOCALHOST=true` environment
variable. Using the frontends you can also use the login form to use the admin APIs, open
Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ currently being supported with security updates.
|---------------------------|--------------------|
| `main` development branch | :green_check_mark: |
| 11.3.x | :green_check_mark: |
| 11.2.x | :green_check_mark: |
| 11.2.x | :x: |
| 11.1.x | :x: |
| 11.0.x | :x: |
| 10.0.x | :x: |
Expand Down

0 comments on commit 9b05e12

Please sign in to comment.