-
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.
- Loading branch information
1 parent
a3c99c2
commit d40b831
Showing
9 changed files
with
62 additions
and
18 deletions.
There are no files selected for viewing
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,7 +1,24 @@ | ||
https://www.jessym.com/articles/bundling-react-vite-with-spring-boot | ||
This is a go / baduk server. | ||
|
||
### Hacking | ||
|
||
First, start the backend server. | ||
|
||
``` | ||
make run | ||
``` | ||
|
||
http://localhost:8080/app/ | ||
Your terminal window or tab is blocked now, so open a new one. | ||
|
||
You may have to run `npm i` once, in `src/main/client`. | ||
|
||
Back in the project root diretory, you can now start the dev server: | ||
|
||
``` | ||
make dev | ||
``` | ||
|
||
The app is running at [http://localhost:3006](http://localhost:3006/app). | ||
|
||
Try editing a file in `src/main/client/src`. | ||
The change should immediately be visible in the browser. |
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 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 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.bernd.model; | ||
|
||
public record ColorlessMove( | ||
int n, | ||
boolean pass, | ||
int x, | ||
int y, | ||
boolean resetCounting, | ||
boolean agreeCounting, | ||
boolean end) { | ||
} |
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 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