-
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
1 parent
d4f7e15
commit 0b3535e
Showing
1 changed file
with
15 additions
and
1 deletion.
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,3 +1,17 @@ | ||
Example of building a portal like micro-frontends for multiple react SPA's. Each react project is totally self contained and should be deployed separately. | ||
|
||
## Root project configuration | ||
## Run the example | ||
|
||
1, Clone this project | ||
2, npm install serve -g | ||
3, Go to each app folder and do: | ||
npm install | ||
4, Under portal-project | ||
npm start | ||
5, Under project-react1 | ||
npm run build | ||
serve -s build -p 5000 | ||
6, Under project-react2 | ||
npm run build | ||
serve -s build -p 5000 | ||
Open up http://localhost:3000 in a web browser. |