1
1
# Koku UI
2
2
3
3
[ ![ Apache 2.0] [ license-badge ]] ( https://github.com/project-koku/koku-ui/blob/main/LICENSE )
4
- [ ![ CI Status] [ build-badge ]] ( https://github.com/project-koku/koku-ui/actions/workflows/tag_release .yml )
4
+ [ ![ CI Status] [ build-badge ]] ( https://github.com/project-koku/koku-ui/actions/workflows/ci .yml?query=branch%3Amain )
5
5
[ ![ codecov] [ codecov-badge ]] ( https://codecov.io/gh/project-koku/koku-ui )
6
6
7
7
React.js app for Cost Management.
@@ -11,6 +11,7 @@ User interface is based on [Patternfly].
11
11
Submit issues in [ Jira] .
12
12
13
13
## Requirements
14
+
14
15
* [ NodeJS v18.15+] [ nodejs ]
15
16
* [ npm v9.5+] [ npm ]
16
17
@@ -28,6 +29,7 @@ sudo bash scripts/patch-etc-hosts.sh
28
29
```
29
30
30
31
## Getting Started
32
+
31
33
1 . Install requirements listed above.
32
34
2 . Setup ` /etc/hosts ` entries listed above.
33
35
3 . Clone the repository, and open a terminal in the base of this project.
@@ -44,6 +46,7 @@ npm test
44
46
```
45
47
46
48
## Running Koku UI against a hosted Koku API, using webpack proxy
49
+
47
50
Note that this approach currently supports the Insights stage-beta, stage-stable, prod-beta, and prod-stable environments.
48
51
49
52
1 . Start development server
@@ -64,7 +67,7 @@ https://stage.foo.redhat.com:1337/beta/openshift/cost-management
64
67
65
68
### Running Koku UI with local Cloud Services Backend
66
69
67
- See https://github.com/RedHatInsights/chrome-service-backend/blob/main/docs/cloud-services-config.md# serving-files-locally
70
+ Refer to the [ serving files locally ] [ serving -files-locally] section of cloud services config for more details
68
71
69
72
1 . Serve files locally from Cloud Services Backend repo
70
73
```
@@ -78,7 +81,7 @@ npm start:csb
78
81
79
82
### Running Koku UI with local Koku microfrontend (MFE)
80
83
81
- See https://github.com/project- koku/koku -ui-mfe
84
+ Refer to the [ koku-ui-mfe README ] [ koku-ui-mfe-readme ] for more details
82
85
83
86
1 . Start development server in Koku MFE repo
84
87
```
@@ -92,8 +95,7 @@ npm start:mfe
92
95
93
96
### Running Koku UI with local Koku microfrontend (MFE) and Cloud Services Backend
94
97
95
- See https://github.com/RedHatInsights/chrome-service-backend/blob/main/docs/cloud-services-config.md#serving-files-locally
96
- and https://github.com/project-koku/koku-ui-mfe
98
+ Refer to the [ serving files locally] [ serving-files-locally ] section of cloud services config and the [ koku-ui-mfe README] [ koku-ui-mfe-readme ] for more details
97
99
98
100
1 . Serve files locally from Cloud Services Backend repo
99
101
```
@@ -126,31 +128,32 @@ Follow the prompts that follow.
126
128
127
129
2 . Open the following URL
128
130
```
129
- http://localhost:8002/beta/openshift/cost-management
131
+ http://localhost:8002/beta/openshift/cost-management
130
132
```
131
133
132
134
#### Koku API
133
- Refer to the project [ README] [ koku-readme ] for prerequisites
134
135
135
- 1 . Setup & run Koku API (see project [ README] [ koku-readme ] for more details)
136
+ Refer to the [ koku README] [ koku-readme ] for more details
137
+
138
+ 1 . Setup & run Koku API
136
139
```
137
- > git clone git@github.com:project-koku/koku.git
138
- > cd [KOKU_GIT_REPO]
139
- > pipenv install --dev
140
- > pipenv shell "pre-commit install"
141
- > make docker-up-min or make docker-up-min-trino
142
- > make create-test-customer
143
- > make load-test-customer-data (use with docker-up-min-trino)
140
+ git clone git@github.com:project-koku/koku.git
141
+ cd [KOKU_GIT_REPO]
142
+ pipenv install --dev
143
+ pipenv shell "pre-commit install"
144
+ make docker-up-min or make docker-up-min-trino
145
+ make create-test-customer
146
+ make load-test-customer-data (use with docker-up-min-trino)
144
147
```
145
148
146
149
2 . Check to see if containers are running (optional)
147
150
```
148
- > docker ps --format "table {{.Names}}\t{{.Image}}\t{{.Ports}}\t{{.Status}}"
151
+ docker ps --format "table {{.Names}}\t{{.Image}}\t{{.Ports}}\t{{.Status}}"
149
152
```
150
153
151
154
3 . Watch the Koku API logs in another terminal (optional)
152
155
```
153
- > docker- compose logs -f koku-server koku-worker
156
+ docker compose logs -f koku-server koku-worker
154
157
```
155
158
156
159
4 . Clean up (optional)
@@ -164,25 +167,25 @@ exit
164
167
165
168
## Running local instances of Settings Frontend & Koku API
166
169
167
- Follow the [ steps] ( #koku-api ) to run a local Koku API instance
170
+ Follow the koku API [ steps] ( #koku-api ) to run a local Koku API instance
168
171
169
172
1 . Clone the Settings Frontend repository and install dependencies
170
173
```
171
- > git clone https://github.com/RedHatInsights/settings-frontend.git
172
- > cd [SETTINGS_FRONTEND_GIT_REPO]
173
- > npm install
174
+ git clone https://github.com/RedHatInsights/settings-frontend.git
175
+ cd [SETTINGS_FRONTEND_GIT_REPO]
176
+ npm install
174
177
```
175
178
176
179
2 . Set the following variables in your environment
177
180
```
178
- > export API_PORT=8000
179
- > export LOCAL_API="/api/cost-management/v1/"
180
- > export KEYCLOAK_PORT=4020
181
+ export API_PORT=8000
182
+ export LOCAL_API="/api/cost-management/v1/"
183
+ export KEYCLOAK_PORT=4020
181
184
```
182
185
183
186
3 . Start development server
184
187
```
185
- > npm run start:standalone:beta
188
+ npm run start:standalone:beta
186
189
```
187
190
188
191
4 . Open the following URL
@@ -194,14 +197,15 @@ http://localhost:1337/beta/settings/applications/cost-management
194
197
195
198
This [ RELEASE] [ release-doc ] doc describes how to release Koku UI to each staging environment.
196
199
197
- [ build-badge ] : https://github.com/project-koku/koku-ui/actions/workflows/tag_release.yml/badge.svg
198
- [ license-badge ] : https://img.shields.io/github/license/project-koku/koku-ui.svg?longCache=true
200
+ [ build-badge ] : https://github.com/project-koku/koku-ui/actions/workflows/ci.yml/badge.svg?branch=main
199
201
[ codecov-badge ] : https://codecov.io/gh/project-koku/koku-ui/graph/badge.svg?token=1hjFIy1cRe
200
-
202
+ [ Jira ] : https://issues.redhat.com/projects/COST/
201
203
[ koku-readme ] : https://github.com/project-koku/koku#readme
204
+ [ koku-ui-mfe-readme ] : https://github.com/project-koku/koku-ui-mfe#readme
205
+ [ license-badge ] : https://img.shields.io/github/license/project-koku/koku-ui.svg?longCache=true
202
206
[ nodejs ] : https://nodejs.org/en/
207
+ [ npm ] : https://www.npmjs.com/
203
208
[ patch-etc-hosts ] : https://github.com/RedHatInsights/insights-proxy/blob/master/scripts/patch-etc-hosts.sh
204
209
[ Patternfly ] : https://www.patternfly.org/
205
210
[ release-doc ] : https://github.com/project-koku/koku-ui/blob/main/RELEASE.md
206
- [ npm ] : https://www.npmjs.com/
207
- [ Jira ] : https://issues.redhat.com/projects/COST/
211
+ [ serving-files-locally ] : https://github.com/RedHatInsights/chrome-service-backend/blob/main/docs/cloud-services-config.md#serving-files-locally
0 commit comments