https://github.com/ammbra/hangman
Hangman with JDK 22 and Spring Boot
https://github.com/ammbra/hangman
jdk22 spring-boot
Last synced: 6 months ago
JSON representation
Hangman with JDK 22 and Spring Boot
- Host: GitHub
- URL: https://github.com/ammbra/hangman
- Owner: ammbra
- License: mit
- Created: 2020-01-09T22:35:24.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-08-13T09:16:26.000Z (over 1 year ago)
- Last Synced: 2025-07-14T03:39:34.905Z (6 months ago)
- Topics: jdk22, spring-boot
- Language: Java
- Homepage:
- Size: 206 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# How to Deploy Hangman
You can deploy this setup either locally or in your Kubernetes cluster by simple issuing:
```shell script
####Create namespace dev only if you wish to deploy in this namespace. Otherwise you can use the project/namespace you wish
kubectl create ns dev
helm install backend ./backend/chart/backend
```
Run the following script by specifying the name of the workspace you used to install the previous Helm chart (in this example dev):
```shell script
sh backend.sh dev
```
Replace the result in _frontend/chart/fed/values.yaml_:
```yaml script
backend:
hostname: hostname:8080
```
Finally run:
```shell script
helm install fed ./frontend/chart/fed
```
Now access hangman at the URL obtained from:
```shell script
sh frontend.sh dev
```