You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,12 +8,12 @@
8
8
9
9
### Using Docker compose
10
10
11
-
The fastest way to experiment with Bootzooka is using the provided Docker compose setup. It starts three images:
11
+
The fastest way to experiment with Bootzooka is using the provided Docker compose setup. It starts three images:
12
12
Bootzooka itself (either locally built or downloaded), PostgreSQL server and Graphana LGTM for observability.
13
13
14
14
### Backend: PostgreSQL & API
15
15
16
-
To run Bootzooka's backend locally, you'll still need a running instance of PostgreSQL with a `bootzooka` database.
16
+
To run Bootzooka's backend locally, you'll still need a running instance of PostgreSQL with a `bootzooka` database.
17
17
You can spin up one easily using docker:
18
18
19
19
```sh
@@ -44,12 +44,12 @@ Then, you can start the frontend:
44
44
./frontend-start.sh
45
45
```
46
46
47
-
And open `http://localhost:3000`.
47
+
And open `http://localhost:8081`.
48
48
49
49
## Commercial Support
50
50
51
51
We offer commercial support for Bootzooka and related technologies, as well as development services. [Contact us](https://softwaremill.com) to learn more about our offer!
Copy file name to clipboardExpand all lines: docs/frontend.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ If this is your first attempt to run `ui`, please go to `ui` project and run
21
21
22
22
yarn install
23
23
24
-
This will install all required dependencies for this project. If all is well you can start your development version of frontend by issuing `yarn start` from command line (or running the provided `frontend-start` script in the main directory). It should start your browser and point you to [Bootzooka home page](http://0.0.0.0:3000/#/).
24
+
This will install all required dependencies for this project. If all is well you can start your development version of frontend by issuing `yarn start` from command line (or running the provided `frontend-start` script in the main directory). It should start your browser and point you to [Bootzooka home page](http://0.0.0.0:8081/#/).
25
25
26
26
## Development
27
27
@@ -36,7 +36,7 @@ The most important tasks exposed are:
36
36
37
37
## `yarn start` task
38
38
39
-
This task serves Bootzooka application on port `3000` on `0.0.0.0` (it is available to all hosts from the same network). Your default browser should open at this location. All requests to the backend will be proxied to port `8080` where it expects the server to be run.
39
+
This task serves Bootzooka application on port `8081` on `0.0.0.0` (it is available to all hosts from the same network). Your default browser should open at this location. All requests to the backend will be proxied to port `8080` where it expects the server to be run.
40
40
41
41
Hot reload is in place already (provided by the Vite stack), so every change is automatically compiled (if necessary) and browser is automatically refreshed to apply changes. No need to refresh it by hand.
0 commit comments