-
Notifications
You must be signed in to change notification settings - Fork 3
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
Showing
3 changed files
with
15 additions
and
2 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
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,12 @@ | ||
Development Notes | ||
|
||
Frontend of the application can be developed separately from the backend. | ||
The setup requires following steps: | ||
1) configure the application according to [Setup Guide](setup.md) | ||
2) configure `config.properties` to contain `security.sameSite=None` | ||
This is important if you are running the application over http so | ||
web browser would not block requests to the server due to CORS policy. | ||
3) build the backend `mvn clean package` | ||
4) deploy created web application archive (`./target/record-manager-*.war`) to a web server | ||
5) run frontend `cd ./src/main/webapp; npm run dev` | ||
6) frontend is by default accessible from `http://localhost:3000` |
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