-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Made it possible to run receipt locally (#7962)
* Made it possible to run receipt locally * Update src/development/loadbalancer/nginx.conf Co-authored-by: Ivar Nesje <[email protected]> * Added error page * updates * LF Co-authored-by: Ivar Nesje <[email protected]>
- Loading branch information
1 parent
b4a64a6
commit e593645
Showing
4 changed files
with
38 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,21 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Receipt is not running</title> | ||
</head> | ||
<body> | ||
<h1>502 Bad Gateway</h1> | ||
<h2>Receipt is not running</h2> | ||
<p>Please ensure that Receipt is running on port 5060</p> | ||
<pre> | ||
Open a terminal in src/Altinn.Platform/Altinn.Platform.Receipt | ||
run yarn --immutable | ||
run yarn run gulp-install-deps | ||
run yarn run gulp (if running for the first time, otherwise this can be skipped) | ||
run yarn run gulp-develop if need for changing fronend code, dotnet run if only needing standard receipt | ||
</pre> | ||
</body> | ||
</html> |
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