Andreas Svanberg 360119ad6a
Generate a client secret when a public client goes private
This can also be used as a way to get a new client secret for a private client by switching to public and back.
2025-04-25 10:56:27 +02:00
2025-03-27 15:16:33 +01:00
2025-03-21 15:14:33 +01:00
2025-03-21 15:14:43 +01:00
2025-03-25 12:44:32 +01:00
2025-03-21 15:14:33 +01:00

Using as an embedded Docker Compose service

services:
  oauth2:
    build: https://gitea.dsv.su.se/DMC/oauth2-authorization-server.git
    restart: unless-stopped
    ports:
      - "<host_port>:8080"
    environment:
      CLIENT_ID=awesome-app
      CLIENT_SECRET=p4ssw0rd
      CLIENT_REDIRECT_URI=http://localhost/oauth2/callback

Development

Prerequisites

  • JDK 17 (or later)
  • Docker
  • Docker compose 2.24.0 (or later)

Run mvnw spring-boot:run to start the application.

If running via IntelliJ or some other means make sure the "dev" Spring profile is activated. You may have to run mvnw compile to generate any necessary files.

The application will be available at http://localhost:8080

Description
No description provided
Readme 497 KiB
Languages
Java 98.9%
Dockerfile 1%
CSS 0.1%