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: DEVELOPMENT.md
+5-6Lines changed: 5 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1,25 +1,24 @@
1
-
# Developing Console
1
+
# Developing MinIO Console
2
2
3
-
Console requires to have the [MinIO](https://github.com/minio/minio) server, Console server and the Console web app running.
3
+
The MinIO Console requires the [MinIO Server](https://github.com/minio/minio). For development purposes, you also need to run both the MinIO Console web app and the MinIO Console server.
4
4
5
-
## Running Server
5
+
## Running MinIO Console server
6
6
7
7
Build the server in the main folder by running:
8
8
```
9
9
make
10
10
```
11
11
> Note: If it's the first time running the server, you might need to run `go mod tidy` to ensure you have all modules required.
12
-
13
12
To start the server run:
14
13
```
15
14
CONSOLE_ACCESS_KEY=<your-access-key>
16
15
CONSOLE_SECRET_KEY=<your-secret-key>
17
-
CONSOLE_MINIO_SERVER=<minio-endpoint>
16
+
CONSOLE_MINIO_SERVER=<minio-server-endpoint>
18
17
CONSOLE_DEV_MODE=on
19
18
./console server
20
19
```
21
20
22
-
## Running Web app
21
+
## Running MinIO Console web app
23
22
Refer to `/portal-ui`[instructions](/portal-ui/README.md) to run the web app locally.
0 commit comments